WbkPropertyBarView.getTablePanel

Syntax

getTablePanel();

Description

The getTablePanel method returns the Data panel of the Data tab.

Comments

This method returns an object of the PP.TS.Ui.TablePanel type.

Example

To execute the example, the HTML page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component. Show the Data panel:

// Get workbook properties panel
var propertyBar = workbookBox.getPropertyBarView();
// Get the Data panel
var tablePanel = propertyBar.getTablePanel();
// Display this panel
tablePanel.show();
// Expand panel
tablePanel.expand();

After executing the example the Data panel is displayed:

See also:

WbkPropertyBarView