ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
CellIterator.php
Go to the documentation of this file.
1
<?php
38
abstract
class
PHPExcel_Worksheet_CellIterator
39
{
45
protected
$_subject
;
46
52
protected
$_position
= null;
53
59
protected
$_onlyExistingCells
=
false
;
60
64
public
function
__destruct
() {
65
unset($this->_subject);
66
}
67
73
public
function
getIterateOnlyExistingCells
() {
74
return
$this->_onlyExistingCells
;
75
}
76
82
abstract
protected
function
adjustForExistingOnlyRange
();
83
90
public
function
setIterateOnlyExistingCells
($value =
true
) {
91
$this->_onlyExistingCells = (boolean) $value;
92
93
$this->
adjustForExistingOnlyRange
();
94
}
95
}
PHPExcel_Worksheet_CellIterator\$_onlyExistingCells
$_onlyExistingCells
Definition:
CellIterator.php:59
PHPExcel_Worksheet_CellIterator\$_position
$_position
Definition:
CellIterator.php:52
PHPExcel_Worksheet_CellIterator\getIterateOnlyExistingCells
getIterateOnlyExistingCells()
Get loop only existing cells.
Definition:
CellIterator.php:73
PHPExcel_Worksheet_CellIterator\__destruct
__destruct()
Destructor.
Definition:
CellIterator.php:64
PHPExcel_Worksheet_CellIterator\$_subject
$_subject
Definition:
CellIterator.php:45
PHPExcel_Worksheet_CellIterator\setIterateOnlyExistingCells
setIterateOnlyExistingCells($value=true)
Set the iterator to loop only existing cells.
Definition:
CellIterator.php:90
PHPExcel_Worksheet_CellIterator\adjustForExistingOnlyRange
adjustForExistingOnlyRange()
Validate start/end values for "IterateOnlyExistingCells" mode, and adjust if necessary.
PHPExcel_Worksheet_CellIterator
Definition:
CellIterator.php:38
libs
composer
vendor
phpoffice
phpexcel
Classes
PHPExcel
Worksheet
CellIterator.php
Generated on Sat Jan 18 2025 19:01:08 for ILIAS by
1.8.13 (using
Doxyfile
)