showGroup(groups: PP.TS.Ui.PropertyGroups);
groups. Properties panel group identifier.
The showGroup method shows properties panel group by identifier.
Identifiers of all properties panel groups are contained in the PP.TS.Ui.PropertyGroups enumeration.
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: