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