Detailed Description
Definition at line 38 of file CellIterator.php.
Constructor & Destructor Documentation
PHPExcel_Worksheet_CellIterator::__construct |
( |
PHPExcel_Worksheet |
$subject = null , |
|
|
|
$rowIndex = 1 |
|
) |
| |
Create a new cell iterator.
- Parameters
-
Definition at line 74 of file CellIterator.php.
{
$this->_subject = $subject;
$this->_rowIndex = $rowIndex;
}
PHPExcel_Worksheet_CellIterator::__destruct |
( |
| ) |
|
Member Function Documentation
PHPExcel_Worksheet_CellIterator::current |
( |
| ) |
|
PHPExcel_Worksheet_CellIterator::getIterateOnlyExistingCells |
( |
| ) |
|
PHPExcel_Worksheet_CellIterator::key |
( |
| ) |
|
PHPExcel_Worksheet_CellIterator::next |
( |
| ) |
|
PHPExcel_Worksheet_CellIterator::rewind |
( |
| ) |
|
Rewind iterator.
Definition at line 90 of file CellIterator.php.
{
$this->_position = 0;
}
PHPExcel_Worksheet_CellIterator::setIterateOnlyExistingCells |
( |
|
$value = true | ) |
|
Set loop only existing cells.
- Returns
- boolean
Definition at line 158 of file CellIterator.php.
{
$this->_onlyExistingCells = $value;
}
PHPExcel_Worksheet_CellIterator::valid |
( |
| ) |
|
Field Documentation
PHPExcel_Worksheet_CellIterator::$_onlyExistingCells = true |
|
private |
PHPExcel_Worksheet_CellIterator::$_position = 0 |
|
private |
PHPExcel_Worksheet_CellIterator::$_rowIndex |
|
private |
PHPExcel_Worksheet_CellIterator::$_subject |
|
private |
The documentation for this class was generated from the following file: