WbkPropertyBarView.getEquationProcessPanel

Syntax

getEquationProcessPanel();

Description

The getEquationProcessPanel method returns the Missing Data Treatment panel.

Comments

This method returns an object of the PP.TS.Ui.EquationProcessPanel 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 Missing Data Treatment panel:

// Get workbook properties panel
var propertyBar = workbookBox.getPropertyBarView();
// Get the Missing Data Treatment panel
var equationProcessPanel = propertyBar.getEquationProcessPanel();
// Display this panel
equationProcessPanel.show();
// expand panel
equationProcessPanel.expand();

After executing the example the Missing Data Treatment panel is displayed:

See also:

WbkPropertyBarView