constructor __construct [line 120]
method defaultBinary [line 102]
method defaultBinaryType [line 118]
void defaultBinaryType(
)
|
|
method defaultBorderColor [line 579]
void defaultBorderColor(
)
|
|
method defaultCenter [line 598]
method defaultDataField [line 611]
method defaultDataSource [line 624]
void defaultDataSource(
)
|
|
method defaultOnClick [line 479]
method defaultOnCustomize [line 496]
void defaultOnCustomize(
)
|
|
method defaultProportional [line 684]
void defaultProportional(
)
|
|
method defaultStretch [line 717]
method dumpContents [line 239]
method dumpFormItems [line 429]
Overrides
Component::dumpFormItems() (Dumps code just after the form tag, useful to dump hidden fields for state retrieving for non visible components)
method dumpGraphic [line 221]
Dumps the graphic as binary
If Binary is true and BinaryType has been set, this method is called to dump the binary information
Tags:
method dumpJavascript [line 441]
Write the Javascript section to the header
Overrides
Control::dumpJavascript() (Dumps all required javascript code for the component.)
method getAutosize [line 555]
If Autosize is true the control takes over the size of the image.
This way the image is displayed 100%.
Tags:
method getBinary [line 100]
Specifies if the information to show is binary or an url
If true, this component will perform a request to get binary data instead pointing to the image url
Tags:
method getBinaryType [line 116]
Specifies the type of binary information this component is going to dump
Use this property to specify the mime type of binary information this component is going to dump
Tags:
method getBorder [line 567]
Adds a border around the image if true.
This property specifies if the image is going to have a border around or not
Tags:
method getBorderColor [line 577]
Color of the border, only has an affect if Border is set to true.
Use the HTML hex color format. e.g. #FF0000 for red.
method getCenter [line 596]
Indicates whether the image is centered in the image control.
When the image does not fit perfectly within the image control, use Center to specify how the image is positioned. When Center is true, the image is centered in the control. When Center is false, the upper left corner of the image is positioned at the upper left corner of the control.
Note: Center has no effect if the AutoSize property is true.
Tags:
method getDataField [line 609]
DataField is the fieldname to be attached to the control.
This property allows you to show/edit information from a table column using this control. To make it work, you must also assign the Datasource property, which specifies the dataset that contain the fieldname to work on
method getDataSource [line 622]
DataSource property allows you to link this control to a dataset containing rows of data.
To make it work, you must also assign DataField property with the name of the column you want to use
method getEnabled [line 695]
method getImageSource [line 634]
Source of the image denotes a path where the image is located.
This path can be relative to the script or absolute.
Tags:
method getjsOnClick [line 502]
method getjsOnDblClick [line 505]
method getjsOnDragOver [line 535]
method getjsOnDragStart [line 532]
method getjsOnKeyDown [line 526]
method getjsOnKeyPress [line 523]
method getjsOnKeyUp [line 529]
method getjsOnMouseDown [line 508]
method getjsOnMouseMove [line 517]
method getjsOnMouseOut [line 520]
method getjsOnMouseOver [line 514]
method getjsOnMouseUp [line 511]
method getLink [line 645]
If Link is set, the Image will link to that URL
Tags:
method getLinkTarget [line 656]
Target attribute when the label acts as a link.
Tags:
method getOnClick [line 477]
Occurs when the user clicks the control.
Use the OnClick event handler to respond when the user clicks the control.
Usually OnClick occurs when the user presses and releases the left mouse button with the mouse pointer over the control. This event can also occur when:
The user selects an item in a grid, outline, list, or combo box by pressing an arrow key.
The user presses Spacebar while a button or check box has focus.
The user presses Enter when the active form has a default button (specified by the Default property).
The user presses Esc when the active form has a cancel button (specified by the Cancel property).
method getOnCustomize [line 494]
Occurs before the image tag is written to the stream sent to the client.
Use this event to modifiy the image source.
<?php
function Image1Customize($sender, $params)
{
$this->Image1->ImageSource="url/test.jpg";
}
?>
Tags:
method getParentShowHint [line 659]
void getParentShowHint(
)
|
|
method getPopupMenu [line 662]
method getProportional [line 682]
Indicates whether the image should be changed, without distortion, so that it fits the bounds of the image control.
Set Proportional to true to ensure that the image can be fully displayed in the image control without any distortion. When Proportional is true, images that are too large to fit in the image control are scaled down (while maintaining the same aspect ratio) until they fit in the image control. Images that are too small are displayed normally. That is, Proportional can reduce the magnification of the image, but does not increase it.
Note: The filesize is equal even the image is scaled down.
Tags:
method getShowHint [line 686]
method getStretch [line 715]
Indicates whether the image should be changed so that it exactly fits the bounds of the image control.
Set Stretch to true to cause the image to assume the size and shape of the image control. When the image control resizes, the image resizes also. Stretch resizes the height and width of the image independently. Thus, unlike a simple change in magnification, Stretch can distort the image if the image control is not the same shape as the image.
To resize the control to the image rather than resizing the image to the control, use the AutoSize property instead.
The default value for Stretch is false.
method getStyle [line 689]
method getVisible [line 692]
method init [line 187]
method loaded [line 158]
method setAutosize [line 556]
void setAutosize(
$value)
|
|
Parameters:
method setBinary [line 101]
method setBinaryType [line 117]
void setBinaryType(
$value)
|
|
Parameters:
method setBorder [line 568]
method setBorderColor [line 578]
void setBorderColor(
$value)
|
|
Parameters:
method setCenter [line 597]
method setDataField [line 610]
void setDataField(
$value)
|
|
Parameters:
method setDataSource [line 623]
void setDataSource(
$value)
|
|
Parameters:
method setEnabled [line 696]
method setImageSource [line 635]
void setImageSource(
$value)
|
|
Parameters:
method setjsOnClick [line 503]
void setjsOnClick(
$value)
|
|
Parameters:
method setjsOnDblClick [line 506]
void setjsOnDblClick(
$value)
|
|
Parameters:
method setjsOnDragOver [line 536]
void setjsOnDragOver(
$value)
|
|
Parameters:
method setjsOnDragStart [line 533]
void setjsOnDragStart(
$value)
|
|
Parameters:
method setjsOnKeyDown [line 527]
void setjsOnKeyDown(
$value)
|
|
Parameters:
method setjsOnKeyPress [line 524]
void setjsOnKeyPress(
$value)
|
|
Parameters:
method setjsOnKeyUp [line 530]
void setjsOnKeyUp(
$value)
|
|
Parameters:
method setjsOnMouseDown [line 509]
void setjsOnMouseDown(
$value)
|
|
Parameters:
method setjsOnMouseMove [line 518]
void setjsOnMouseMove(
$value)
|
|
Parameters:
method setjsOnMouseOut [line 521]
void setjsOnMouseOut(
$value)
|
|
Parameters:
method setjsOnMouseOver [line 515]
void setjsOnMouseOver(
$value)
|
|
Parameters:
method setjsOnMouseUp [line 512]
void setjsOnMouseUp(
$value)
|
|
Parameters:
method setLink [line 646]
method setLinkTarget [line 657]
void setLinkTarget(
$value)
|
|
Parameters:
method setOnClick [line 478]
method setOnCustomize [line 495]
void setOnCustomize(
$value)
|
|
Parameters:
method setParentShowHint [line 660]
void setParentShowHint(
$value)
|
|
Parameters:
method setPopupMenu [line 663]
void setPopupMenu(
$value)
|
|
Parameters:
method setProportional [line 683]
void setProportional(
$value)
|
|
Parameters:
method setShowHint [line 687]
void setShowHint(
$value)
|
|
Parameters:
method setStretch [line 716]
method setStyle [line 690]
method setVisible [line 693]