EaxAnalyzer.getIsPPSrvCreate

Syntax

getIsPPSrvCreate();

Description

The getIsPPSrvCreate method determines whether an express report is created using EaxMdService.

Comments

The method returns True if this report is created via the PP.Exp.EaxMdService service, and False if otherwise.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Determine if the express report has been created using EaxMdService:

var eaxAnalyzer = expressBox.getSource();
if (eaxAnalyzer.getIsPPSrvCreate()) {
    console.log("The express report has been created using EaxMdService.");
} else {
    console.log("The express report has not been created using EaxMdService.");
};

After executing the example the browser console displays a message that the express report has been created using EaxMdService.

See also:

EaxAnalyzer