You are here

private static function PHPExcel_Writer_Excel5_Xf::_mapFillType in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Xf.php \PHPExcel_Writer_Excel5_Xf::_mapFillType()

* Map fill type * *

Parameters

string $fillType: * @return int

1 call to PHPExcel_Writer_Excel5_Xf::_mapFillType()
PHPExcel_Writer_Excel5_Xf::writeXf in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Xf.php
* Generate an Excel BIFF XF record (style or cell). * *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Xf.php, line 445

Class

PHPExcel_Writer_Excel5_Xf
PHPExcel_Writer_Excel5_Xf

Code

private static function _mapFillType($fillType) {
  if (isset(self::$_mapFillType[$fillType])) {
    return self::$_mapFillType[$fillType];
  }
  return 0x0;
}