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