Report.getDisplayTabs

Syntax

getDisplayTabs() : Boolean;

Description

The getDisplayTabs method returns whether sheet tabs are displayed.

Comments

Sheet tabs are located at the top and used to navigate sheets.

Example

To execute this example, the HTML page must contain the ReportBox component named reportBox (see. Example of the ReportBox Component Layout) and a regular report model named prxReport containing several sheets. Determine visibility of sheet tabs:

// Get whether sheet tabs are displayed
result = prxReport.getDisplayTabs();
console.log(result ? "Sheet tabs are displayed" : "Sheet tabs are hidden");

After executing the example the console displays whether tabs are displayed.

See also:

Report