public function PHPExcel_Worksheet_Column::getCellIterator in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Column.php \PHPExcel_Worksheet_Column::getCellIterator()
* Get cell iterator * *
Parameters
integer $startRow The row number at which to start iterating: * @param integer $endRow Optionally, the row number at which to stop iterating * @return PHPExcel_Worksheet_CellIterator
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Worksheet/ Column.php, line 89
Class
- PHPExcel_Worksheet_Column
- PHPExcel_Worksheet_Column
Code
public function getCellIterator($startRow = 1, $endRow = null) {
return new PHPExcel_Worksheet_ColumnCellIterator($this->_parent, $this->_columnIndex, $startRow, $endRow);
}