"rowHeaderToolTip"

Adds a tooltip to a header of a table row.

Synopsis

setValue(string shape, "rowHeaderToolTip", int idx, string headerToolTip);

getValue(string shape, "rowHeaderToolTip", int idx, string &headerToolTip);

shape.rowHeaderToolTip(int idx, string header);

Parameters

Parameter Description
shape Name of the object
idx Index of the row.
headerToolTip The tooltip of the row header

Description

Adds a tooltip to the header of a table row.

Example

In the following example, a new row and header are added to the table. Next, a tooltip is added to the created header.

main()
{
  TABLE1.appendLine("Column1", "Testing");
  langString h = "Test3";
  TABLE1.rowHeader(2,h);
  //the header of the third row since the index starts from 0
  string t = "Tooltip for the Header Test3";
  TABLE1.rowHeaderToolTip(2,t);
}

Assignment

Table