IEaxAnalyzer.Name

Syntax

Name: String;

Description

The Name property returns express report name.

Example

Sub UserProc;
Var
    MB: IMetabase;
    Expr: IEaxAnalyzer;
    s: String;
Begin
    MB := MetabaseClass.Active;
    Expr := MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
    s := Expr.Name;
End Sub UserProc;

After executing the example the s variable contains name of the express report. Express report identifier - EXPRESS_REPORT.

See also:

IEaxAnalyzer