You are here

public function PHPExcel_Worksheet_Drawing_Shadow::__construct in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing/Shadow.php \PHPExcel_Worksheet_Drawing_Shadow::__construct()

Create a new PHPExcel_Worksheet_Drawing_Shadow

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing/Shadow.php, line 104

Class

PHPExcel_Worksheet_Drawing_Shadow
PHPExcel_Worksheet_Drawing_Shadow

Code

public function __construct() {

  // Initialise values
  $this->_visible = false;
  $this->_blurRadius = 6;
  $this->_distance = 2;
  $this->_direction = 0;
  $this->_alignment = PHPExcel_Worksheet_Drawing_Shadow::SHADOW_BOTTOM_RIGHT;
  $this->_color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK);
  $this->_alpha = 50;
}