IEaxAnalyzer.Options

Syntax

Options: IEaxAnalyzerOptions;

Description

The Options property returns express report parameters.

Example

Sub Main;

Var

MB: IMetabase;

Expr: IEaxAnalyzer;

Option: IEaxAnalyzerOptions;

Begin

MB:=MetabaseClass.Active;

Expr:=MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;

Option:=Expr.Options;

End Sub Main;

 

After executing the example the Option variable will contain express report parameters. Express report identifier - EXPRESS_REPORT.

See also:

IEaxAnalyzer