You are here

public function PHPExcel_Worksheet_Drawing::__construct in Loft Data Grids 6.2

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

Create a new PHPExcel_Worksheet_Drawing

Overrides PHPExcel_Worksheet_BaseDrawing::__construct

1 method overrides PHPExcel_Worksheet_Drawing::__construct()
PHPExcel_Worksheet_HeaderFooterDrawing::__construct in vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php
Create a new PHPExcel_Worksheet_HeaderFooterDrawing

File

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

Class

PHPExcel_Worksheet_Drawing
PHPExcel_Worksheet_Drawing

Code

public function __construct() {

  // Initialise values
  $this->_path = '';

  // Initialize parent
  parent::__construct();
}