\PHPExcel_Worksheet_RowIterator

PHPExcel_Worksheet_RowIterator

Used to iterate rows in a PHPExcel_Worksheet

Summary

Methods
Properties
Constants
__construct()
__destruct()
resetStart()
resetEnd()
seek()
rewind()
current()
key()
next()
prev()
valid()
No public properties found
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
$_subject
$_position
$_startRow
$_endRow
N/A

Properties

$_subject

$_subject : \PHPExcel_Worksheet

PHPExcel_Worksheet to iterate

Type

\PHPExcel_Worksheet

$_position

$_position : integer

Current iterator position

Type

integer

$_startRow

$_startRow : integer

Start position

Type

integer

$_endRow

$_endRow : integer

End position

Type

integer

Methods

__construct()

__construct(\PHPExcel_Worksheet  $subject = null, integer  $startRow = 1, integer  $endRow = null) 

Create a new row iterator

Parameters

\PHPExcel_Worksheet $subject

The worksheet to iterate over

integer $startRow

The row number at which to start iterating

integer $endRow

Optionally, the row number at which to stop iterating

__destruct()

__destruct() 

Destructor

resetStart()

resetStart(integer  $startRow = 1) : \PHPExcel_Worksheet_RowIterator

(Re)Set the start row and the current row pointer

Parameters

integer $startRow

The row number at which to start iterating

Returns

\PHPExcel_Worksheet_RowIterator

resetEnd()

resetEnd(integer  $endRow = null) : \PHPExcel_Worksheet_RowIterator

(Re)Set the end row

Parameters

integer $endRow

The row number at which to stop iterating

Returns

\PHPExcel_Worksheet_RowIterator

seek()

seek(integer  $row = 1) : \PHPExcel_Worksheet_RowIterator

Set the row pointer to the selected row

Parameters

integer $row

The row number to set the current pointer at

Throws

\PHPExcel_Exception

Returns

\PHPExcel_Worksheet_RowIterator

rewind()

rewind() 

Rewind the iterator to the starting row

current()

current() : \PHPExcel_Worksheet_Row

Return the current row in this worksheet

Returns

\PHPExcel_Worksheet_Row

key()

key() : integer

Return the current iterator key

Returns

integer

next()

next() 

Set the iterator to its next value

prev()

prev() 

Set the iterator to its previous value

valid()

valid() : boolean

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

Returns

boolean