Src - property of the PmgAnimImage object
Description:
The file name with the path to the animated GIF file.
Note:
Property access
for read and write. The preset 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 PmgObject.Refresh).
This property is also functional in
Web panels.
Example:
Displays the Fire01.gif animated image
JavaScriptVBScriptSelect and copy to clipboard
var oImage = pMe.Items("/RImg0");
var sSrc = oImage.Src; //reading
oImage.Src = "#pmres:Anim/Fire01.gif"; //writing
Dim oImage, sSrc
Set oImage = pMe.Items("/RImg0")
sSrc = oImage.Src 'reading
oImage.Src = "#pmres:Anim/Fire01.gif" 'writing