You are here

public function PHPExcel_Writer_Excel5_Xf::__construct 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::__construct()

* Constructor * * @access public *

Parameters

PHPExcel_Style The XF format:

File

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

Class

PHPExcel_Writer_Excel5_Xf
PHPExcel_Writer_Excel5_Xf

Code

public function __construct(PHPExcel_Style $style = null) {
  $this->_isStyleXf = false;
  $this->_fontIndex = 0;
  $this->_numberFormatIndex = 0;
  $this->_text_justlast = 0;
  $this->_fg_color = 0x40;
  $this->_bg_color = 0x41;
  $this->_diag = 0;
  $this->_bottom_color = 0x40;
  $this->_top_color = 0x40;
  $this->_left_color = 0x40;
  $this->_right_color = 0x40;
  $this->_diag_color = 0x40;
  $this->_style = $style;
}