Class actuate.dashboard.Tab
Description
A wrapper class for the raw definition of a tab in a dashboard file.
Constructor
Syntax
actuate.dashboard.Tab( )
Constructs a new tab object.
Function summary
Table 7‑9 lists the actuate.dashboard.Tab functions.
Table 7‑9 actuate.dashboard.Tab functions
Function
Description
Returns the tab’s name
Returns the tab’s type
Returns the tab’s title
getName
Syntax
string Tab.getName( )
Returns the tab’s name.
Returns
String. The name of the tab.
Example
This example displays the tab object’s name in an alert box:
alert(myTab.getName( ));
getTabType
Syntax
string Tab.getTabType( )
Returns the tab’s type.
Returns
String. The tab’s type. The legal type values are ISystemTabHandle and ITabHandle.
Example
This example displays the tab object’s type in an alert box:
alert(myTab.getTabType( ));
getTitle
Syntax
string Tab.getTitle( )
Returns the tab’s title.
Returns
String. The title of the tab.
Example
This example displays the tab object’s title in an alert box:
alert(myTab.getTitle( ));