Detailed Description
Definition at line 36 of file Theme.php.
Constructor & Destructor Documentation
PHPExcel_Reader_Excel2007_Theme::__construct |
( |
|
$themeName, |
|
|
|
$colourSchemeName, |
|
|
|
$colourMap |
|
) |
| |
Create a new PHPExcel_Theme.
Definition at line 72 of file Theme.php.
{
$this->_themeName = $themeName;
$this->_colourSchemeName = $colourSchemeName;
$this->_colourMap = $colourMap;
}
Member Function Documentation
PHPExcel_Reader_Excel2007_Theme::__clone |
( |
| ) |
|
Implement PHP __clone to create a deep clone, not just a shallow copy.
Definition at line 114 of file Theme.php.
{
$vars = get_object_vars($this);
foreach ($vars as $key => $value) {
if ((is_object($value)) && ($key != '_parent')) {
$this->$key = clone $value;
} else {
$this->$key = $value;
}
}
}
PHPExcel_Reader_Excel2007_Theme::getColourByIndex |
( |
|
$index = 0 | ) |
|
Get colour Map Value by Position.
- Returns
- string
Definition at line 104 of file Theme.php.
{
if (isset($this->_colourMap[$index])) {
return $this->_colourMap[$index];
}
return null;
}
PHPExcel_Reader_Excel2007_Theme::getColourSchemeName |
( |
| ) |
|
PHPExcel_Reader_Excel2007_Theme::getThemeName |
( |
| ) |
|
Field Documentation
PHPExcel_Reader_Excel2007_Theme::$_colourMap |
|
private |
PHPExcel_Reader_Excel2007_Theme::$_colourMapValues |
|
private |
PHPExcel_Reader_Excel2007_Theme::$_colourSchemeName |
|
private |
PHPExcel_Reader_Excel2007_Theme::$_themeName |
|
private |
The documentation for this class was generated from the following file:
- Services/Excel/PHPExcel/1.7.6/Classes/PHPExcel/Reader/Excel2007/Theme.php