You are here

public function PHPExcel::cellXfExists in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel.php \PHPExcel::cellXfExists()

Check if style exists in style collection

Parameters

PHPExcel_Style $pCellStyle:

Return value

boolean

File

vendor/phpoffice/phpexcel/Classes/PHPExcel.php, line 914

Class

PHPExcel
PHPExcel

Code

public function cellXfExists($pCellStyle = null) {
  return in_array($pCellStyle, $this->_cellXfCollection, true);
}