You are here

class PHPExcel_Shared_Escher in Loft Data Grids 7.2

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

PHPExcel_Shared_Escher

@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

1 string reference to 'PHPExcel_Shared_Escher'
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.php, line 35

View source
class PHPExcel_Shared_Escher {

  /**
   * Drawing Group Container
   *
   * @var PHPExcel_Shared_Escher_DggContainer
   */
  private $_dggContainer;

  /**
   * Drawing Container
   *
   * @var PHPExcel_Shared_Escher_DgContainer
   */
  private $_dgContainer;

  /**
   * Get Drawing Group Container
   *
   * @return PHPExcel_Shared_Escher_DgContainer
   */
  public function getDggContainer() {
    return $this->_dggContainer;
  }

  /**
   * Set Drawing Group Container
   *
   * @param PHPExcel_Shared_Escher_DggContainer $dggContainer
   */
  public function setDggContainer($dggContainer) {
    return $this->_dggContainer = $dggContainer;
  }

  /**
   * Get Drawing Container
   *
   * @return PHPExcel_Shared_Escher_DgContainer
   */
  public function getDgContainer() {
    return $this->_dgContainer;
  }

  /**
   * Set Drawing Container
   *
   * @param PHPExcel_Shared_Escher_DgContainer $dgContainer
   */
  public function setDgContainer($dgContainer) {
    return $this->_dgContainer = $dgContainer;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PHPExcel_Shared_Escher::$_dgContainer private property * Drawing Container * *
PHPExcel_Shared_Escher::$_dggContainer private property * Drawing Group Container * *
PHPExcel_Shared_Escher::getDgContainer public function * Get Drawing Container * *
PHPExcel_Shared_Escher::getDggContainer public function * Get Drawing Group Container * *
PHPExcel_Shared_Escher::setDgContainer public function * Set Drawing Container * *
PHPExcel_Shared_Escher::setDggContainer public function * Set Drawing Group Container * *