A single bitmap containing all images used by the table.
Usage
Set_Property(OLECtrlEntID, "OLE.ImageList", Array)
Values
Array has the following structure:
Pos | Name | Type | Description | Default |
---|---|---|---|---|
<1> | Image Path | Formatted String | The path to an image containing all images to be used | "" |
<2> | Frame Count | Integer | The number of frames into which the image is to be equally divided | 1 |
<3> | Transparent Color | Formatted String | The image color not to be drawn | Auto |
Remarks
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
// 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)