EaxAnalyzer.getSourcePrivateDims

Syntax

getSourcePrivateDims(sourceKey: Number, getFixedDims: Boolean);

Parameters

sourceKey. Internal data source index.

getFixedDims. Indicates whether private fixed dimensions are obtained. The method returns either private, or private fixed dimensions.

Description

The getSourcePrivateDims method returns private dimension keys of the specified source.

Comments

The method returns an Array value.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component) containing several data sources. Get private dimensions:

// Get private dimensions of the second data source
eaxAnalyzer.getSourcePrivateDims(1, false);
// -> [Object, Object]

After executing the example the browser console displays names of private dimensions of the second data source.

See also:

EaxAnalyzer