You are here

public function PHPExcel_Writer_Excel2007_Style::allStyles in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Style.php \PHPExcel_Writer_Excel2007_Style::allStyles()

* Get an array of all styles * *

Parameters

PHPExcel $pPHPExcel: * @return PHPExcel_Style[] All styles in PHPExcel * @throws PHPExcel_Writer_Exception

4 calls to PHPExcel_Writer_Excel2007_Style::allStyles()
PHPExcel_Writer_Excel2007_Style::allBorders in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Style.php
* Get an array of all borders * *
PHPExcel_Writer_Excel2007_Style::allFills in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Style.php
* Get an array of all fills * *
PHPExcel_Writer_Excel2007_Style::allFonts in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Style.php
* Get an array of all fonts * *
PHPExcel_Writer_Excel2007_Style::allNumberFormats in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Style.php
* Get an array of all number formats * *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Style.php, line 580

Class

PHPExcel_Writer_Excel2007_Style
PHPExcel_Writer_Excel2007_Style

Code

public function allStyles(PHPExcel $pPHPExcel = null) {
  $aStyles = $pPHPExcel
    ->getCellXfCollection();
  return $aStyles;
}