You are here

public function PHPExcel_Worksheet_AutoFilter_Column::getAttribute in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column.php \PHPExcel_Worksheet_AutoFilter_Column::getAttribute()

* Get specific AutoFilter Column Attribute * *

Parameters

string $pName Attribute Name: * @return string

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column.php, line 282

Class

PHPExcel_Worksheet_AutoFilter_Column
PHPExcel_Worksheet_AutoFilter_Column

Code

public function getAttribute($pName) {
  if (isset($this->_attributes[$pName])) {
    return $this->_attributes[$pName];
  }
  return NULL;
}