You are here

public function PHPExcel_Worksheet_RowIterator::valid in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowIterator.php \PHPExcel_Worksheet_RowIterator::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/RowIterator.php, line 180

Class

PHPExcel_Worksheet_RowIterator
PHPExcel_Worksheet_RowIterator

Code

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