string
The image file name or names associated with a panel. The file names are those of image or bitmap files from which the panel images were derived.
If the panel is not an image panel, the size of this array is 0, otherwise the size of the array, always fixed-length, depends on the panel type:
button [<n>] - The images displayed (or displayable) in the button.
check_button [1] - The image displayed alongside the toggle.
clock [0] - Not applicable.
combo_box [0] - Not applicable.
dial [0] - Not applicable.
label [<n>] - The current (or displayable) label images.
list [0] - Not applicable.
log [0] - Not applicable.
options [<n>] - The option images.
progress [0] - Not applicable.
radio_box [<n>] - The images displayed alongside the toggles.
sash [0] - Not applicable.
separator [0] - Not applicable.
slider [0] - Not applicable.
tab_button [1] - The image displayed alongside the text.
text [0] - Not applicable.
window [0] - Not applicable.
Changing this element will effect an immediate visible change in the panel. A new value should be the name of a image file with or without a cameo number.
Change a panel image to the contents of a .gif image file.
mywin.panels[1].image[1] = "myim.gif"
Change the second image of a panel to the contents of a image file.
mywin.panels[1].image[2] = "myras.ras"
Change the third image of a panel to the fourth image from a multi-image file.
mywin.panels[1].image[3] = "mymenu.ras%4"