You are here

class PHPExcel_Shared_Escher_DgContainer in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer.php \PHPExcel_Shared_Escher_DgContainer

PHPExcel_Shared_Escher_DgContainer

@category PHPExcel @package PHPExcel_Shared_Escher @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)

Hierarchy

Expanded class hierarchy of PHPExcel_Shared_Escher_DgContainer

1 string reference to 'PHPExcel_Shared_Escher_DgContainer'
PHPExcel_Writer_Excel5_Escher::close in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Escher.php
* Process the object to be written

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer.php, line 35

View source
class PHPExcel_Shared_Escher_DgContainer {

  /**
   * Drawing index, 1-based.
   *
   * @var int
   */
  private $_dgId;

  /**
   * Last shape index in this drawing
   *
   * @var int
   */
  private $_lastSpId;
  private $_spgrContainer = null;
  public function getDgId() {
    return $this->_dgId;
  }
  public function setDgId($value) {
    $this->_dgId = $value;
  }
  public function getLastSpId() {
    return $this->_lastSpId;
  }
  public function setLastSpId($value) {
    $this->_lastSpId = $value;
  }
  public function getSpgrContainer() {
    return $this->_spgrContainer;
  }
  public function setSpgrContainer($spgrContainer) {
    return $this->_spgrContainer = $spgrContainer;
  }

}

Members