"registerVisible";

This attributes displays or hides a tab with a specified tab index (starting at 0).

Synopsis

setValue(string shape, "registerVisible", int idx, bool visible);

getValue(string shape, "registerVisible", int idx, bool &visible);

shape.registerVisible(intidx,boolvisible);

Parameters

Parameter Description
shape Name of the object, for example, Tab1
idx Index of the tab, starting with 0
visible The tab is visible or invisible (TRUE/FALSE)

Description

This attributes displays or hides a tab with a specified tab index (starting at 0). The visibility of a specified tab can also be queried.

Example

main()
{
  Tab1.registerVisible(2, FALSE);
  // Hides Tab 3 of the shape "Tab1"
}

Assignment

Tab