"namedRegisterVisible";

This attribute displays or hides a tab using the tab name.

Synopsis

setValue(string shape, "namedRegisterVisible", string s, bool visible);

getValue(string shape, "namedRegisterVisible", string s, bool &visible);

shape.namedRegisterVisible(string s, bool visible;

Parameters

Parameter Description
shape Name of the object, for example, Tab1
s Name of the individual tab, for example, Reg4
visible The tab is visible or invisible (TRUE/FALSE)

Description

This attribute displays or hides a tab using its name (Visible = TRUE, invisible = FALSE). The default is TRUE.

Example

main()
{
  Tab1.namedRegisterVisible("Reg4", FALSE);
  //Hides the Tab "Reg4" of the "Tab1"
}

Assignment

Tab