"registerHeader";

Sets the header for a tab.

Synopsis

setValue(string shape, "registerHeader",int idx, langString header);

getValue(string shape, "registerHeader", int idx, langString &header);

shape.registerHeader( int idx, langString header);

Parameters

Parameter Description
shape Name of the object
idx Index of the tab
header Header of the tab

Description

Sets the header for a tab.

To add an "&" character to the text, the notation "&&" must be used. A single "&" will add an underline to the following character.

Example

Sets the header for the first tab to "Tab".

main()
{
  langString h = "Tab";
  TAB1.registerHeader(0,h);
}

Assignment

Tab