ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
PHPExcel_Shared_Escher_DggContainer Class Reference
+ Collaboration diagram for PHPExcel_Shared_Escher_DggContainer:

Public Member Functions

 getSpIdMax ()
 Get maximum shape index of all shapes in all drawings (plus one)
 setSpIdMax ($value)
 Set maximum shape index of all shapes in all drawings (plus one)
 getCDgSaved ()
 Get total number of drawings saved.
 setCDgSaved ($value)
 Set total number of drawings saved.
 getCSpSaved ()
 Get total number of shapes saved (including group shapes)
 setCSpSaved ($value)
 Set total number of shapes saved (including group shapes)
 getBstoreContainer ()
 Get BLIP Store Container.
 setBstoreContainer ($bstoreContainer)
 Set BLIP Store Container.
 setOPT ($property, $value)
 Set an option for the drawing group.
 getOPT ($property)
 Get an option for the drawing group.

Private Attributes

 $_spIdMax
 $_cDgSaved
 $_cSpSaved
 $_bstoreContainer
 $_OPT = array()

Detailed Description

Definition at line 35 of file DggContainer.php.

Member Function Documentation

PHPExcel_Shared_Escher_DggContainer::getBstoreContainer ( )

Get BLIP Store Container.

Returns
PHPExcel_Shared_Escher_DggContainer_BstoreContainer

Definition at line 137 of file DggContainer.php.

References $_bstoreContainer.

PHPExcel_Shared_Escher_DggContainer::getCDgSaved ( )

Get total number of drawings saved.

Returns
int

Definition at line 97 of file DggContainer.php.

References $_cDgSaved.

{
}
PHPExcel_Shared_Escher_DggContainer::getCSpSaved ( )

Get total number of shapes saved (including group shapes)

Returns
int

Definition at line 117 of file DggContainer.php.

References $_cSpSaved.

{
}
PHPExcel_Shared_Escher_DggContainer::getOPT (   $property)

Get an option for the drawing group.

Parameters
int$propertyThe number specifies the option
Returns
mixed

Definition at line 169 of file DggContainer.php.

{
if (isset($this->_OPT[$property])) {
return $this->_OPT[$property];
}
return null;
}
PHPExcel_Shared_Escher_DggContainer::getSpIdMax ( )

Get maximum shape index of all shapes in all drawings (plus one)

Returns
int

Definition at line 77 of file DggContainer.php.

References $_spIdMax.

{
}
PHPExcel_Shared_Escher_DggContainer::setBstoreContainer (   $bstoreContainer)

Set BLIP Store Container.

Parameters
PHPExcel_Shared_Escher_DggContainer_BstoreContainer$bstoreContainer

Definition at line 147 of file DggContainer.php.

{
$this->_bstoreContainer = $bstoreContainer;
}
PHPExcel_Shared_Escher_DggContainer::setCDgSaved (   $value)

Set total number of drawings saved.

Parameters
int

Definition at line 107 of file DggContainer.php.

{
$this->_cDgSaved = $value;
}
PHPExcel_Shared_Escher_DggContainer::setCSpSaved (   $value)

Set total number of shapes saved (including group shapes)

Parameters
int

Definition at line 127 of file DggContainer.php.

{
$this->_cSpSaved = $value;
}
PHPExcel_Shared_Escher_DggContainer::setOPT (   $property,
  $value 
)

Set an option for the drawing group.

Parameters
int$propertyThe number specifies the option
mixed$value

Definition at line 158 of file DggContainer.php.

{
$this->_OPT[$property] = $value;
}
PHPExcel_Shared_Escher_DggContainer::setSpIdMax (   $value)

Set maximum shape index of all shapes in all drawings (plus one)

Parameters
int

Definition at line 87 of file DggContainer.php.

{
$this->_spIdMax = $value;
}

Field Documentation

PHPExcel_Shared_Escher_DggContainer::$_bstoreContainer
private

Definition at line 63 of file DggContainer.php.

Referenced by getBstoreContainer().

PHPExcel_Shared_Escher_DggContainer::$_cDgSaved
private

Definition at line 49 of file DggContainer.php.

Referenced by getCDgSaved().

PHPExcel_Shared_Escher_DggContainer::$_cSpSaved
private

Definition at line 56 of file DggContainer.php.

Referenced by getCSpSaved().

PHPExcel_Shared_Escher_DggContainer::$_OPT = array()
private

Definition at line 70 of file DggContainer.php.

PHPExcel_Shared_Escher_DggContainer::$_spIdMax
private

Definition at line 42 of file DggContainer.php.

Referenced by getSpIdMax().


The documentation for this class was generated from the following file: