Classes


Class actuate.dashboard.Tab

A wrapper class for the raw definition of a tab in a dashboard file.
Member of: actuate.dashboard.

Class Summary
Constructor Attributes Constructor Name and Description
 
Constructs a new tab object.
Method Summary
Method Attributes Method Name and Description
 
Returns the tab's name.
 
Returns the tab's type.
 
Returns the tab's title.
Class Detail
actuate.dashboard.Tab()
Constructs a new tab object.
Method Detail
{String} getName()
Returns the tab's name. This example displays the tab object's name in an alert box:
	alert(myTab.getName( ));
Returns:
{String} The name of the tab.

{String} getTabType()
Returns the tab's type. This example displays the tab object's type in an alert box:
	alert(myTab.getTabType( ));
Returns:
{String} The tab's type. The legal type values are ISystemTabHandle and ITabHandle.

{String} getTitle()
Returns the tab's title. This example displays the tab object's title in an alert box:
	alert(myTab.getTitle( ));
Returns:
{String} The title of the tab.

Documentation generated by JsDoc Toolkit 2.0.1 on Tue Jan 29 2013 05:44:21 GMT-0800 (PST)