You are here

public function PHPExcel::addCellXf in Loft Data Grids 7.2

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

Add a cellXf to the workbook

Parameters

PHPExcel_Style $style:

2 calls to PHPExcel::addCellXf()
PHPExcel::addExternalSheet in vendor/phpoffice/phpexcel/Classes/PHPExcel.php
Add external sheet
PHPExcel::__construct in vendor/phpoffice/phpexcel/Classes/PHPExcel.php
* Create a new PHPExcel with one Worksheet

File

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

Class

PHPExcel
PHPExcel

Code

public function addCellXf(PHPExcel_Style $style) {
  $this->_cellXfCollection[] = $style;
  $style
    ->setIndex(count($this->_cellXfCollection) - 1);
}