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