EaxAnalyzer.SelectedPart

Syntax

SelectedPart : Object;

Description

The SelectedPart property determines table selected area.

Comments

Use JSON or the setSelectedPart method to set the property value and the getSelectedPart method to get the property value.

Table formatting settings via side panel are applied only to the selected table area.

Area names are given in the PP.Exp.Ui.EaxTablePart enumeration.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component).

var eaxAnalyzer = expressBox.getSource();
// Get selected table area
part = eaxAnalyzer.getSelectedPart();
// Display area name to the console
console.log(part.part);

After executing the example the console displays names of selected table area.

See also:

EaxAnalyzer