The color not to be drawn in the control's image.
Usage
Set_Property(OLECtrlEntID, "OLE.TransparentColor", StringValue)
Values
StringValue can be any string meeting the following format requirements:
Syntax: [RGB Color | "Auto" | "None"]
Default: "Auto"
Remarks
This property allows the developer to specify that a certain color in the control's image not be drawn. This allows bitmap images to appear as natural irregular shapes rather than as rectangles.
The easiest way to make a color transparent is to set this property to Auto. In so doing, the control will always use the image's top left pixel, the pixel located at coordinate (0, 0), to determine the transparent color. If you want a different color to be transparent, then pass an exact RGB color value. You can do this using OI's RGB function.
* make pure blue the transparent color Set_Property(@Window:".OLE_PICTURE", "OLE.TransparentColor", RGB(0, 0, 255))
This property is ignored if the control's image was loaded from an .ico file since icon files already contain the transparent pixels.