ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
PHPExcel_Worksheet_Row Class Reference
+ Collaboration diagram for PHPExcel_Worksheet_Row:

Public Member Functions

 __construct (PHPExcel_Worksheet $parent=null, $rowIndex=1)
 Create a new row.
 __destruct ()
 Destructor.
 getRowIndex ()
 Get row index.
 getCellIterator ()
 Get cell iterator.

Private Attributes

 $_parent
 $_rowIndex = 0

Detailed Description

Definition at line 56 of file Row.php.

Constructor & Destructor Documentation

PHPExcel_Worksheet_Row::__construct ( PHPExcel_Worksheet  $parent = null,
  $rowIndex = 1 
)

Create a new row.

Parameters
PHPExcel_Worksheet$parent
int$rowIndex

Definition at line 78 of file Row.php.

{
// Set parent and row index
$this->_parent = $parent;
$this->_rowIndex = $rowIndex;
}
PHPExcel_Worksheet_Row::__destruct ( )

Destructor.

Definition at line 87 of file Row.php.

{
unset($this->_parent);
}

Member Function Documentation

PHPExcel_Worksheet_Row::getCellIterator ( )

Get cell iterator.

Returns
PHPExcel_Worksheet_CellIterator

Definition at line 105 of file Row.php.

{
return new PHPExcel_Worksheet_CellIterator($this->_parent, $this->_rowIndex);
}
PHPExcel_Worksheet_Row::getRowIndex ( )

Get row index.

Returns
int

Definition at line 96 of file Row.php.

References $_rowIndex.

{
}

Field Documentation

PHPExcel_Worksheet_Row::$_parent
private

Definition at line 63 of file Row.php.

PHPExcel_Worksheet_Row::$_rowIndex = 0
private

Definition at line 70 of file Row.php.

Referenced by getRowIndex().


The documentation for this class was generated from the following file: