| |
Variant |
A VARIANT expression that specifies the icon/picture/image to be displayed as
described:
- A String expression indicates:
- a name of a picture file in the PicturePath folder. For instance,
ParentPicture = "favorites.png", loads the
favorites.png file if found in
the PicturePath folder.
- a picture file including its absolute path. For instance, ParentPicture
= "C:\Program Files\Exontrol\ExRadialMenu\Sample\Images\favorites.png",
loads the favorites.png file from absolute path
- a key of the HTML picture, previously loaded by the HTMLPicture
method. For instance, ParentPicture
= "pic1",
loads the HTML picture with the key pic1, so the pic1 should be load
previously with a HTMLPicture call like HTMLPicture("pic1")
= "C:\Program
Files\Exontrol\ExRadialMenu\Sample\Images\favorites.png"
- an encode BASE64 string of a picture file. The Exontrol's ExImages
Tool encode/decode BASE64 strings from/to pictures. In this case, the
string starts with "gB..", "gC.." and so on.
- A Picture object that indicates the picture to be displayed. For
instance, ParentPicture
= LoadPicture("picture.jpg")
If no picture/image is found, the item displays no picture/image.
| |