"columnToolTipText"
    
    This attribute defines a text that will be displayed when the cursor points at the column of a table.
Synopsis
setValue(string shape, "columnToolTipText", int column,
                        langString tooltip);
getValue(string shape, "columnToolTipText", int column,
                        langString &tooltip);
shape.columnToolTipText(int column, langString
                    tooltip);
Parameter
| Parameter | Description | 
|---|---|
| shape | Name of the objects | 
| column | Index of the column, starting with 0 | 
| tooltip | Displayed text | 
Description
This attribute sets the text for a column's tool tip. The index defines the column of a table.
Example
The first column of "Table1"; has to display the tool tip text "Name".
main()
{
  shape table=getShape("Table1");
  table.columnToolTipText(0, "Name");
}
        Assignment
Table