Show contents 

Express > Express Assembly Interfaces > IExAnalyzerExporter > IExAnalyzerExporter.ExAnalyzer

IExAnalyzerExporter.ExAnalyzer

Syntax

ExAnalyzer: IEaxAnalyzer;

Description

The ExAnalyzer property selects the express report to be exported.

Example

Sub UserProc;
Var
    MB: IMetabase;
    Expr: IEaxAnalyzer;
    ExpExspr: IExAnalyzerExporter;
Begin
    MB := MetabaseClass.Active;
    Expr := MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
    ExpExspr := New ExAnalyzerExporter.Create;
    ExpExspr.ExAnalyzer := Expr;
    ExpExspr.ExportToFile("c:\"+ Expr.Name + ".XLS""XLS");
End Sub UserProc;

After executing the example the express report is exported to XLS format. Express report identifier - EXPRESS_REPORT.

See also:

IExAnalyzerExporter