You are here

public function PHPExcel_DocumentProperties::isCustomPropertySet in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.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]);
}