 "setBackColor"
"setBackColor"
    
    Sets the background color for an item.
Synopsis
shape.setBackColor(string id, int column, string color);
Parameters
| Parameter | Description | 
|---|---|
| shape | Name of the object | 
| Id | The ID of the item | 
| column | The number of the column | 
| color | The background color that should be set. | 
Description
Sets the background color for an item.
 Example
Example
The following example sets the background color for the item "PART1" to red.
main()
{
  TREE1.setBackColor("PART1",0,"Red");
}Assignment
Tree widget
