"namedColumnToolTipText"

This attributes defines a text that is displayed when the cursor points to a table column.

Synopsis

setValue(string shape, "namedColumnToolTipText", string name, langString tooltip);

getValue(string shape, "namedColumnToolTipText", string &name, langString &tooltip);

shape.namedColumnToolTipText(string name, langString tooltip);

Parameter

Parameter Description
shape Name of the object
name Name of the column
tooltip Displayed text

Description

This attributes sets the text of a columns tool tip. The name defines the corresponding column.

Example

In this example, the first column of table "Table1"; will display "Name" for the column "Name".

main()
{
  TABLE1.namedColumnToolTipText("Name", "Name");
}

Assignment

Table