You are here

public function PHPExcel_Worksheet_AutoFilter_Column::setAttribute in Loft Data Grids 6.2

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

* Set An AutoFilter Attribute * *

Parameters

string $pName Attribute Name: * @param string $pValue Attribute Value * @throws PHPExcel_Exception * @return PHPExcel_Worksheet_AutoFilter_Column

File

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

Class

PHPExcel_Worksheet_AutoFilter_Column
PHPExcel_Worksheet_AutoFilter_Column

Code

public function setAttribute($pName, $pValue) {
  $this->_attributes[$pName] = $pValue;
  return $this;
}