ILIAS
Release_4_0_x_branch Revision 61816
|
Public Member Functions | |
__construct () | |
Create a new PHPExcel_Worksheet_BaseDrawing. | |
getImageIndex () | |
Get image index. | |
getName () | |
Get Name. | |
setName ($pValue= '') | |
Set Name. | |
getDescription () | |
Get Description. | |
setDescription ($pValue= '') | |
Set Description. | |
getWorksheet () | |
Get Worksheet. | |
setWorksheet (PHPExcel_Worksheet $pValue=null, $pOverrideOld=false) | |
Set Worksheet. | |
getCoordinates () | |
Get Coordinates. | |
setCoordinates ($pValue= 'A1') | |
Set Coordinates. | |
getOffsetX () | |
Get OffsetX. | |
setOffsetX ($pValue=0) | |
Set OffsetX. | |
getOffsetY () | |
Get OffsetY. | |
setOffsetY ($pValue=0) | |
Set OffsetY. | |
getWidth () | |
Get Width. | |
setWidth ($pValue=0) | |
Set Width. | |
getHeight () | |
Get Height. | |
setHeight ($pValue=0) | |
Set Height. | |
setWidthAndHeight ($width=0, $height=0) | |
Set width and height with proportional resize Example: $objDrawing->setResizeProportional(true); $objDrawing->setWidthAndHeight(160,120); | |
getResizeProportional () | |
Get ResizeProportional. | |
setResizeProportional ($pValue=true) | |
Set ResizeProportional. | |
getRotation () | |
Get Rotation. | |
setRotation ($pValue=0) | |
Set Rotation. | |
getShadow () | |
Get Shadow. | |
setShadow (PHPExcel_Worksheet_Drawing_Shadow $pValue=null) | |
Set Shadow. | |
getHashCode () | |
Get hash code. | |
getHashIndex () | |
Get hash index. | |
setHashIndex ($value) | |
Set hash index. | |
__clone () | |
Implement PHP __clone to create a deep clone, not just a shallow copy. |
Protected Attributes | |
$_name | |
$_description | |
$_worksheet | |
$_coordinates | |
$_offsetX | |
$_offsetY | |
$_width | |
$_height | |
$_resizeProportional | |
$_rotation | |
$_shadow |
Private Attributes | |
$_imageIndex = 0 | |
$_hashIndex |
Static Private Attributes | |
static | $_imageCounter = 0 |
Definition at line 53 of file BaseDrawing.php.
PHPExcel_Worksheet_BaseDrawing::__construct | ( | ) |
Create a new PHPExcel_Worksheet_BaseDrawing.
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing, PHPExcel_Worksheet_MemoryDrawing, and PHPExcel_Worksheet_Drawing.
Definition at line 149 of file BaseDrawing.php.
References $_imageCounter.
PHPExcel_Worksheet_BaseDrawing::__clone | ( | ) |
Implement PHP __clone to create a deep clone, not just a shallow copy.
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing, PHPExcel_Worksheet_MemoryDrawing, and PHPExcel_Worksheet_Drawing.
Definition at line 523 of file BaseDrawing.php.
References $key.
PHPExcel_Worksheet_BaseDrawing::getCoordinates | ( | ) |
Get Coordinates.
Definition at line 268 of file BaseDrawing.php.
References $_coordinates.
PHPExcel_Worksheet_BaseDrawing::getDescription | ( | ) |
Get Description.
Definition at line 203 of file BaseDrawing.php.
References $_description.
PHPExcel_Worksheet_BaseDrawing::getHashCode | ( | ) |
Get hash code.
Implements PHPExcel_IComparable.
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing, PHPExcel_Worksheet_MemoryDrawing, and PHPExcel_Worksheet_Drawing.
Definition at line 473 of file BaseDrawing.php.
Referenced by setWorksheet().
PHPExcel_Worksheet_BaseDrawing::getHashIndex | ( | ) |
Get hash index.
Note that this index may vary during script execution! Only reliable moment is while doing a write of a workbook and when changes are not allowed.
Implements PHPExcel_IComparable.
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing, PHPExcel_Worksheet_MemoryDrawing, and PHPExcel_Worksheet_Drawing.
Definition at line 504 of file BaseDrawing.php.
References $_hashIndex.
PHPExcel_Worksheet_BaseDrawing::getHeight | ( | ) |
Get Height.
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing.
Definition at line 356 of file BaseDrawing.php.
References $_height.
PHPExcel_Worksheet_BaseDrawing::getImageIndex | ( | ) |
Get image index.
Definition at line 174 of file BaseDrawing.php.
References $_imageIndex.
Referenced by PHPExcel_Worksheet_Drawing\getIndexedFilename(), and PHPExcel_Worksheet_MemoryDrawing\getIndexedFilename().
PHPExcel_Worksheet_BaseDrawing::getName | ( | ) |
Get Name.
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing.
Definition at line 183 of file BaseDrawing.php.
References $_name.
PHPExcel_Worksheet_BaseDrawing::getOffsetX | ( | ) |
Get OffsetX.
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing.
Definition at line 288 of file BaseDrawing.php.
References $_offsetX.
PHPExcel_Worksheet_BaseDrawing::getOffsetY | ( | ) |
Get OffsetY.
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing.
Definition at line 308 of file BaseDrawing.php.
References $_offsetY.
PHPExcel_Worksheet_BaseDrawing::getResizeProportional | ( | ) |
Get ResizeProportional.
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing.
Definition at line 412 of file BaseDrawing.php.
References $_resizeProportional.
PHPExcel_Worksheet_BaseDrawing::getRotation | ( | ) |
PHPExcel_Worksheet_BaseDrawing::getShadow | ( | ) |
PHPExcel_Worksheet_BaseDrawing::getWidth | ( | ) |
Get Width.
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing.
Definition at line 328 of file BaseDrawing.php.
References $_width.
PHPExcel_Worksheet_BaseDrawing::getWorksheet | ( | ) |
Get Worksheet.
Definition at line 223 of file BaseDrawing.php.
References $_worksheet.
PHPExcel_Worksheet_BaseDrawing::setCoordinates | ( | $pValue = 'A1' | ) |
Set Coordinates.
string | $pValue |
Definition at line 278 of file BaseDrawing.php.
PHPExcel_Worksheet_BaseDrawing::setDescription | ( | $pValue = '' | ) |
Set Description.
string | $pValue |
Definition at line 213 of file BaseDrawing.php.
PHPExcel_Worksheet_BaseDrawing::setHashIndex | ( | $value | ) |
Set hash index.
Note that this index may vary during script execution! Only reliable moment is while doing a write of a workbook and when changes are not allowed.
string | $value | Hash index |
Implements PHPExcel_IComparable.
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing, PHPExcel_Worksheet_MemoryDrawing, and PHPExcel_Worksheet_Drawing.
Definition at line 516 of file BaseDrawing.php.
PHPExcel_Worksheet_BaseDrawing::setHeight | ( | $pValue = 0 | ) |
Set Height.
int | $pValue |
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing.
Definition at line 366 of file BaseDrawing.php.
References $_height.
PHPExcel_Worksheet_BaseDrawing::setName | ( | $pValue = '' | ) |
Set Name.
string | $pValue |
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing.
Definition at line 193 of file BaseDrawing.php.
Referenced by PHPExcel_Reader_Excel2007\load().
PHPExcel_Worksheet_BaseDrawing::setOffsetX | ( | $pValue = 0 | ) |
Set OffsetX.
int | $pValue |
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing.
Definition at line 298 of file BaseDrawing.php.
PHPExcel_Worksheet_BaseDrawing::setOffsetY | ( | $pValue = 0 | ) |
Set OffsetY.
int | $pValue |
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing.
Definition at line 318 of file BaseDrawing.php.
PHPExcel_Worksheet_BaseDrawing::setResizeProportional | ( | $pValue = true | ) |
Set ResizeProportional.
boolean | $pValue |
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing.
Definition at line 422 of file BaseDrawing.php.
PHPExcel_Worksheet_BaseDrawing::setRotation | ( | $pValue = 0 | ) |
Set Rotation.
int | $pValue |
Definition at line 442 of file BaseDrawing.php.
PHPExcel_Worksheet_BaseDrawing::setShadow | ( | PHPExcel_Worksheet_Drawing_Shadow | $pValue = null | ) |
Set Shadow.
PHPExcel_Worksheet_Drawing_Shadow | $pValue |
Exception |
Definition at line 463 of file BaseDrawing.php.
PHPExcel_Worksheet_BaseDrawing::setWidth | ( | $pValue = 0 | ) |
Set Width.
int | $pValue |
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing.
Definition at line 338 of file BaseDrawing.php.
References $_width.
PHPExcel_Worksheet_BaseDrawing::setWidthAndHeight | ( | $width = 0 , |
|
$height = 0 |
|||
) |
Set width and height with proportional resize Example: $objDrawing->setResizeProportional(true); $objDrawing->setWidthAndHeight(160,120);
int | $width | |
int | $height |
Reimplemented in PHPExcel_Worksheet_HeaderFooterDrawing.
Definition at line 392 of file BaseDrawing.php.
References $_height, and $_width.
PHPExcel_Worksheet_BaseDrawing::setWorksheet | ( | PHPExcel_Worksheet | $pValue = null , |
$pOverrideOld = false |
|||
) |
Set Worksheet.
PHPExcel_Worksheet | $pValue | |
bool | $pOverrideOld | If a Worksheet has already been assigned, overwrite it and remove image from old Worksheet? |
Exception |
Definition at line 235 of file BaseDrawing.php.
References getHashCode().
|
protected |
Definition at line 95 of file BaseDrawing.php.
Referenced by getCoordinates().
|
protected |
Definition at line 81 of file BaseDrawing.php.
Referenced by getDescription().
|
private |
Definition at line 494 of file BaseDrawing.php.
Referenced by getHashIndex().
|
protected |
Definition at line 123 of file BaseDrawing.php.
Referenced by getHeight(), setHeight(), and setWidthAndHeight().
|
staticprivate |
Definition at line 60 of file BaseDrawing.php.
Referenced by __construct().
|
private |
Definition at line 67 of file BaseDrawing.php.
Referenced by getImageIndex().
|
protected |
Definition at line 74 of file BaseDrawing.php.
Referenced by getName().
|
protected |
Definition at line 102 of file BaseDrawing.php.
Referenced by getOffsetX().
|
protected |
Definition at line 109 of file BaseDrawing.php.
Referenced by getOffsetY().
|
protected |
Definition at line 130 of file BaseDrawing.php.
Referenced by getResizeProportional().
|
protected |
Definition at line 137 of file BaseDrawing.php.
Referenced by getRotation().
|
protected |
Definition at line 144 of file BaseDrawing.php.
Referenced by getShadow().
|
protected |
Definition at line 116 of file BaseDrawing.php.
Referenced by getWidth(), setWidth(), and setWidthAndHeight().
|
protected |
Definition at line 88 of file BaseDrawing.php.
Referenced by getWorksheet().