You are here

public function PHPExcel_Worksheet_RowCellIterator::next 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::next()

* Set the iterator to its next value

File

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

Class

PHPExcel_Worksheet_RowCellIterator
PHPExcel_Worksheet_RowCellIterator

Code

public function next() {
  do {
    ++$this->_position;
  } while ($this->_onlyExistingCells && !$this->_subject
    ->cellExistsByColumnAndRow($this->_position, $this->_rowIndex) && $this->_position <= $this->_endColumn);
}