EaxAnalyzer.getIsADOMD

Syntax

getIsADOMD(): Boolean;

Description

The getIsADOMD method returns whether express report is based on ADOMD cube.

Comments

The method returns True if express report is built on ADOMD cube, otherwise it returns False.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). If express report is built on ADOMD cube, output message about it to browser console:

eaxAnalyzer = expressBox.getSource();
if(eaxAnalyzer.getIsADOMD()) console.log("Express report is built on ADOMD cube");

After executing the example the browser console displays message whether express report is built on ADOMD cube.

See also:

EaxAnalyzer