public function PHPExcel_DocumentProperties::getCustomPropertyValue in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentProperties.php \PHPExcel_DocumentProperties::getCustomPropertyValue()
Get a Custom Property Value
Parameters
string $propertyName:
Return value
string
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ DocumentProperties.php, line 407
Class
- PHPExcel_DocumentProperties
- PHPExcel_DocumentProperties
Code
public function getCustomPropertyValue($propertyName) {
if (isset($this->_customProperties[$propertyName])) {
return $this->_customProperties[$propertyName]['value'];
}
}