You are here

public function PHPExcel_Worksheet_ColumnCellIterator::current 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::current()

* Return the current cell in this worksheet column * *

Return value

PHPExcel_Worksheet_Row

File

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

Class

PHPExcel_Worksheet_ColumnCellIterator
PHPExcel_Worksheet_ColumnCellIterator

Code

public function current() {
  return $this->_subject
    ->getCellByColumnAndRow($this->_columnIndex, $this->_position);
}