ILIAS  eassessment Revision 61809
 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.
 getIDCLs ()
 Get identifier clusters.
 setIDCLs ($pValue)
 Set identifier clusters.

Private Attributes

 $_spIdMax
 $_cDgSaved
 $_cSpSaved
 $_bstoreContainer
 $_OPT = array()
 $_IDCLs = 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 144 of file DggContainer.php.

References $_bstoreContainer.

PHPExcel_Shared_Escher_DggContainer::getCDgSaved ( )

Get total number of drawings saved.

Returns
int

Definition at line 104 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 124 of file DggContainer.php.

References $_cSpSaved.

{
}
PHPExcel_Shared_Escher_DggContainer::getIDCLs ( )

Get identifier clusters.

Returns
array

Definition at line 189 of file DggContainer.php.

References $_IDCLs.

{
return $this->_IDCLs;
}
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 176 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 84 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 154 of file DggContainer.php.

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

Set total number of drawings saved.

Parameters
int

Definition at line 114 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 134 of file DggContainer.php.

{
$this->_cSpSaved = $value;
}
PHPExcel_Shared_Escher_DggContainer::setIDCLs (   $pValue)

Set identifier clusters.

array(<drawingId> => <max shape="" id>="">, ...)

Parameters
array$pValue

Definition at line 199 of file DggContainer.php.

{
$this->_IDCLs = $pValue;
}
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 165 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 94 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::$_IDCLs = array()
private

Definition at line 77 of file DggContainer.php.

Referenced by getIDCLs().

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: