You are here

private static property PHPExcel_Writer_Excel5_Xf::$_mapHAlign 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::_mapHAlign

* Map of BIFF2-BIFF8 codes for horizontal alignment * @static array of int *

File

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

Class

PHPExcel_Writer_Excel5_Xf
PHPExcel_Writer_Excel5_Xf

Code

private static $_mapHAlign = array(
  PHPExcel_Style_Alignment::HORIZONTAL_GENERAL => 0,
  PHPExcel_Style_Alignment::HORIZONTAL_LEFT => 1,
  PHPExcel_Style_Alignment::HORIZONTAL_CENTER => 2,
  PHPExcel_Style_Alignment::HORIZONTAL_RIGHT => 3,
  PHPExcel_Style_Alignment::HORIZONTAL_FILL => 4,
  PHPExcel_Style_Alignment::HORIZONTAL_JUSTIFY => 5,
  PHPExcel_Style_Alignment::HORIZONTAL_CENTER_CONTINUOUS => 6,
);