WbkPropertyBarView.getSerieRevisionsPanel

Syntax

getSerieRevisionsPanel();

Description

The getSerieRevisionsPanel method returns the Revisions panel of the Series tab.

Comments

This method returns an object of the PP.TS.Ui.SerieRevisionsPanel 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 Revisions panel:

// Get workbook properties panel
var propertyBar = workbookBox.getPropertyBarView();
// Get the Revisions panel
var serieRevisionsPanel = propertyBar.getSerieRevisionsPanel();
// Display this panel
serieRevisionsPanel.show();
// Display panel
serieRevisionsPanel.expand();

The Revisions panel is shown as the result of example execution:

See also:

WbkPropertyBarView