"getBackColor"
Gets the background color for an item.
Synopsis
shape.getBackColor(string id, int column);
Parameters
Parameter | Description |
---|---|
shape | Name of the object |
Id | The ID of the item |
column | The number of the column |
Description
Gets the background color for an item.
Example
The following example gets the background color for the item "PART1".
main()
{
string bcolor = TREE1.getBackColor("PART1",0);
DebugN("Color: " + bcolor);
}
Assignment
Tree widget