 "cellToolTipRC"
"cellToolTipRC"
    
    Defines the tool tip text for a specific cell in a table.
Synopsis
setValue( string shape, " cellToolTipRC ", int row, string
                column, string toolTip);
getValue( string shape, " cellToolTipRC ", int row, string
                column, string &toolTip);
shape. cellToolTipRC ( int row, string column, string
                toolTip);
Parameters
| Parameter | Description | 
|---|---|
| shape | Name of the object | 
| row | Row number | 
| column | Column name | 
| toolTip | Tool tip text for the cell | 
Description
Defines the tool tip text for a specific cell in a table.
The tool tip text for a cell has priority over the tooltip text of the whole column.
 Example
Example
The following example shows firstly how to write a text into a table cell and at next how to define the tool tip text.
 main()
{
  TABLE1.appendLine("Name", "Doe");
  TABLE1.cellToolTipRC(1, "Name", "John");
}Assignment
Table
