Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PosNameTypeDescriptionDefault
<1>Image PathFormatted StringThe path to an image containing all images to be used""
<2>Frame CountIntegerThe number of frames into which the image is to be equally divided1
<3>Transparent ColorFormatted StringThe image color not to be drawnAuto

...

The ImageList property allows you to set a single bitmap containing all images used in the edit table. The image is then divided into equal 'frames' which can be displayed in cells or option buttons. Furthermore, you can set a bitmap color to be transparent, i.e., you can choose the color not to be drawn.

Refer to the Image type documentation for details on how to load images.

Example

Code Block
 // Load the image list from a zip file (the image has 5 frames) 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.ImageList", "Images.zip#tableimage.png":@FM:5)

...