You are here

class PHPExcel_Shared_Escher_DggContainer_BstoreContainer in Loft Data Grids 7.2

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

PHPExcel_Shared_Escher_DggContainer_BstoreContainer

@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_DggContainer_BstoreContainer

1 string reference to 'PHPExcel_Shared_Escher_DggContainer_BstoreContainer'
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/DggContainer/BstoreContainer.php, line 35

View source
class PHPExcel_Shared_Escher_DggContainer_BstoreContainer {

  /**
   * BLIP Store Entries. Each of them holds one BLIP (Big Large Image or Picture)
   *
   * @var array
   */
  private $_BSECollection = array();

  /**
   * Add a BLIP Store Entry
   *
   * @param PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE $BSE
   */
  public function addBSE($BSE) {
    $this->_BSECollection[] = $BSE;
    $BSE
      ->setParent($this);
  }

  /**
   * Get the collection of BLIP Store Entries
   *
   * @return PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE[]
   */
  public function getBSECollection() {
    return $this->_BSECollection;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PHPExcel_Shared_Escher_DggContainer_BstoreContainer::$_BSECollection private property * BLIP Store Entries. Each of them holds one BLIP (Big Large Image or Picture) * *
PHPExcel_Shared_Escher_DggContainer_BstoreContainer::addBSE public function * Add a BLIP Store Entry * *
PHPExcel_Shared_Escher_DggContainer_BstoreContainer::getBSECollection public function * Get the collection of BLIP Store Entries * *