You are here

public function PHPExcel_Worksheet_RowCellIterator::valid in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowCellIterator.php \PHPExcel_Worksheet_RowCellIterator::valid()

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

Return value

boolean

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowCellIterator.php, line 196

Class

PHPExcel_Worksheet_RowCellIterator
PHPExcel_Worksheet_RowCellIterator

Code

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