"namedActiveRegister";

The active tab is defined by its name.

Synopsis

setValue(string shape, "namedActiveRegister", string s);

getValue(string shape, "namedActiveRegister", string &s);

shape.namedActiveRegister(string s);

Parameters

Parameter Description
shape Name of the object
s Name of the tab

Description

Using this attribute, the active tab can be set or defined by means of its name.

Example

Activates the "Properties" tab. "Properties" is the NAME of the tab and not the header. The name can be set either by means of the property editor (see chapter Tab) or by using the function registerName();

main()
{
  reg.namedActiveRegister("Properties");
}

Assignment

Tab