EaxAnalyzer.getDimsByPosition

Syntax

getDimsByPosition(position: PP.Exp.PvtDimPos);

Parameters

position. PP.Exp.PvtDimPos. Dimension position.

Description

The getDimsByPosition method returns array of report dimensions in the specified position.

Example

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

// Select position of dimensions
position = PP.Exp.PvtDimPos.Fixed;
// Get dimensions
eaxAnalyzer.getDimsByPosition(position);
// - > [ PP.Exp.PvtDimension, PP.Exp.PvtDimension, PP.Exp.PvtDimension ]

After executing the example fixed dimensions are obtained.

See also:

EaxAnalyzer