Versions Compared

Key

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

...

Cell's can contain both images and text. See the CellImageLayout and CellAlignment properties for more details.

Example

Code Block
 // Load the image list and set cell (1, 1) to use the second frame 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.ImageList", "c:\tableimage.bmp":@FM:3) 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.CellImage[1; 1]", 2) 

 // Load an BMP image directly into the cell, using no transparent colors 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.CellImage[1; 1]", "c:\image.bmp":@FM:"None") 

 // Load an PNG image directly into the cell, transparent color is embedded in PNG, so no need to specify 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.CellImage[1; 1]", "c:\image.png")

...