You are here

public function PHPExcel_Worksheet_ColumnCellIterator::valid in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnCellIterator.php \PHPExcel_Worksheet_ColumnCellIterator::valid()

* Indicate if more rows exist in the worksheet range of rows that we're iterating * *

Return value

boolean

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnCellIterator.php, line 187

Class

PHPExcel_Worksheet_ColumnCellIterator
PHPExcel_Worksheet_ColumnCellIterator

Code

public function valid() {
  return $this->_position <= $this->_endRow;
}