$rowIndex
$rowIndex : integer
Row index
PHPExcel_Worksheet_RowCellIterator
Copyright (c) 2006 - 2015 PHPExcel
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
$_subject : \PHPExcel_Worksheet
PHPExcel_Worksheet to iterate
__construct(\PHPExcel_Worksheet $subject = null, integer $rowIndex = 1, string $startColumn = 'A', string $endColumn = null)
Create a new column iterator
\PHPExcel_Worksheet | $subject | The worksheet to iterate over |
integer | $rowIndex | The row that we want to iterate |
string | $startColumn | The column address at which to start iterating |
string | $endColumn | Optionally, the column address at which to stop iterating |
current() : \PHPExcel_Cell
Return the current cell in this worksheet row
resetStart(integer $startColumn = 'A') : \PHPExcel_Worksheet_RowCellIterator
(Re)Set the start column and the current column pointer
integer | $startColumn | The column address at which to start iterating |
resetEnd(string $endColumn = null) : \PHPExcel_Worksheet_RowCellIterator
(Re)Set the end column
string | $endColumn | The column address at which to stop iterating |
seek(string $column = 'A') : \PHPExcel_Worksheet_RowCellIterator
Set the column pointer to the selected column
string | $column | The column address to set the current pointer at |