WbkPropertyBarView.showGroup

Syntax

showGroup(groups: PP.TS.Ui.PropertyGroups);

Parameters

groups. Properties panel group identifier.

Description

The showGroup method shows properties panel group by identifier.

Comments

Identifiers of all properties panel groups are contained in the PP.TS.Ui.PropertyGroups enumeration.

Example

To execute the example, the HTML page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component), and all the workbook views must be displayed. Display the main group of properties panel:

// Get workbook properties panel
propertyBarView = workbookBox.getPropertyBarView();
// Hide all wizards
propertyBarView.hideAllMasters();
// Display the main group of properties panel
propertyBarView.showGroup(PP.TS.Ui.PropertyGroups.Main);

After executing the example the main group of properties is displayed in the properties panel.

See also:

WbkPropertyBarView