WorkbookView.getPropertyBarView

Syntax

getPropertyBarView ();

Description

The getPropertyBarView method returns the workbook side panel.

Example

To execute the example, the page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component), and the View tab must be open in side panel. Next add the following code in the event hander that processes document opening:

//Get workbook properties panel
var bar = workbookBox.getPropertyBarView();
workbookBox.refreshHeader();
//Work with an object obtained by means of the getTableViewPanel() method
var tabView = bar.getTableViewPanel();
console.log("Expand table wizard located on the Fomat tab on the View panel.");
tabView.expand();
bar.refreshAll();

After executing the example the View panel is expanded on the Format properties panel tab.

See also:

WorkbookView