You are here

public function PHPExcel_Worksheet_Row::getCellIterator in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Row.php \PHPExcel_Worksheet_Row::getCellIterator()

* Get cell iterator * *

Parameters

string $startColumn The column address at which to start iterating: * @param string $endColumn Optionally, the column address at which to stop iterating * @return PHPExcel_Worksheet_CellIterator

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Row.php, line 89

Class

PHPExcel_Worksheet_Row
PHPExcel_Worksheet_Row

Code

public function getCellIterator($startColumn = 'A', $endColumn = null) {
  return new PHPExcel_Worksheet_RowCellIterator($this->_parent, $this->_rowIndex, $startColumn, $endColumn);
}