public function PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer::getOPT in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php \PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer::getOPT()
* Get an option for the Shape Group Container * *
Parameters
int $property The number specifies the option: * @return mixed
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ Escher/ DgContainer/ SpgrContainer/ SpContainer.php, line 238
Class
- PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer
- PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer
Code
public function getOPT($property) {
if (isset($this->_OPT[$property])) {
return $this->_OPT[$property];
}
return null;
}