The color not to be drawn in a tab's image.

Usage

Set_Property(OLECtrlEntID, "OLE.TabTransparentColor[index]", StringValue)

Values

StringValue can be any string meeting the following format requirements:

Syntax: [RGB Color | "Auto" | "None"]

Default: "Auto"

Indices

IndexDescription
indexIndex to an existing tab.

Remarks

This property allows the developer to specify that a certain color in the tab'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.

This property is ignored if the tab's image was loaded from an .ico file since icon files already contain the transparent pixels.

Example

// make pure blue the transparent color in the second tab's image  
Set_Property(@Window:".OLE_TAB", "OLE.TabTransparentColor[2]", RGB(0, 0, 255))

See Also

TabImage

  • No labels