Src - property of the PmgRasterImage object
Description:
The file name with the path to the file with the picture.
Note:
Property access
for read and write.
The default value of this property is defined in the "
File" configurator of this object.
It is recommended to
always use the path with #pmres: or #appres:.
After writing the pathname of the image file (
svg, jpg, png, bmp, wmf ...), this new image will be displayed on the next redrawing the panel (see the
PmgObject.Refresh method).
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oImg = pMe.Items("/RImg0");
var sSrc = oImg.Src;
// Reading from the property
oImg.Src = "#pmres:Img/HeatOven02.svg";
// Writing into the property
Dim oImg
Set oImg = pMe.Items("/RImg0")
Dim sSrc
sSrc = oImg.Src
' Reading from the property
oImg.Src = "#pmres:Img/HeatOven02.svg"
' Writing into the property
History:
Pm8.01.03:
Fixed bug: Sometimes on writing the modification was not done immediatelly.