You are here

private static property PHPExcel_Writer_Excel5_Font::$_mapUnderline in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Font.php \PHPExcel_Writer_Excel5_Font::_mapUnderline

* Map of BIFF2-BIFF8 codes for underline styles * @static array of int *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Font.php, line 147

Class

PHPExcel_Writer_Excel5_Font
PHPExcel_Writer_Excel5_Font

Code

private static $_mapUnderline = array(
  PHPExcel_Style_Font::UNDERLINE_NONE => 0x0,
  PHPExcel_Style_Font::UNDERLINE_SINGLE => 0x1,
  PHPExcel_Style_Font::UNDERLINE_DOUBLE => 0x2,
  PHPExcel_Style_Font::UNDERLINE_SINGLEACCOUNTING => 0x21,
  PHPExcel_Style_Font::UNDERLINE_DOUBLEACCOUNTING => 0x22,
);