"getText"
    
    Returns the text of an element.
Synopsis
shape.getText(string Id, int column);
Parameters
| Parameter | Description | 
|---|---|
| shape | Object name | 
| Id | Element ID | 
| column | The column | 
Description
Returns the text of an element (in a column).
                
                Example
            
The following example returns the text of the element "ENGINE"; in the column number 0 (first column).
main()
{
  DebugN(TREE1.getText("ENGINE",0));
}
        Assignment
Tree widget
