Detailed Description
Definition at line 36 of file RowDimension.php.
Constructor & Destructor Documentation
PHPExcel_Worksheet_RowDimension::__construct |
( |
|
$pIndex = 0 | ) |
|
Create a new PHPExcel_Worksheet_RowDimension.
- Parameters
-
int | $pIndex | Numeric row index |
Definition at line 80 of file RowDimension.php.
{
$this->_rowIndex = $pIndex;
$this->_rowHeight = -1;
$this->_visible = true;
$this->_outlineLevel = 0;
$this->_collapsed = false;
}
Member Function Documentation
PHPExcel_Worksheet_RowDimension::__clone |
( |
| ) |
|
Implement PHP __clone to create a deep clone, not just a shallow copy.
Definition at line 200 of file RowDimension.php.
References $key.
{
$vars = get_object_vars($this);
foreach ($vars as
$key => $value) {
if (is_object($value)) {
$this->
$key = clone $value;
} else {
}
}
}
PHPExcel_Worksheet_RowDimension::getCollapsed |
( |
| ) |
|
PHPExcel_Worksheet_RowDimension::getOutlineLevel |
( |
| ) |
|
PHPExcel_Worksheet_RowDimension::getRowHeight |
( |
| ) |
|
PHPExcel_Worksheet_RowDimension::getRowIndex |
( |
| ) |
|
PHPExcel_Worksheet_RowDimension::getVisible |
( |
| ) |
|
PHPExcel_Worksheet_RowDimension::setCollapsed |
( |
|
$pValue = true | ) |
|
PHPExcel_Worksheet_RowDimension::setOutlineLevel |
( |
|
$pValue | ) |
|
Set Outline Level.
Value must be between 0 and 7
- Parameters
-
- Exceptions
-
- Returns
- PHPExcel_Worksheet_RowDimension
Definition at line 168 of file RowDimension.php.
{
if ($pValue < 0 || $pValue > 7) {
throw new Exception(
"Outline level must range between 0 and 7.");
}
$this->_outlineLevel = $pValue;
return $this;
}
PHPExcel_Worksheet_RowDimension::setRowHeight |
( |
|
$pValue = -1 | ) |
|
PHPExcel_Worksheet_RowDimension::setRowIndex |
( |
|
$pValue | ) |
|
PHPExcel_Worksheet_RowDimension::setVisible |
( |
|
$pValue = true | ) |
|
Field Documentation
PHPExcel_Worksheet_RowDimension::$_collapsed |
|
private |
PHPExcel_Worksheet_RowDimension::$_outlineLevel = 0 |
|
private |
PHPExcel_Worksheet_RowDimension::$_rowHeight |
|
private |
PHPExcel_Worksheet_RowDimension::$_rowIndex |
|
private |
PHPExcel_Worksheet_RowDimension::$_visible |
|
private |
The documentation for this class was generated from the following file: