IUiErAnalyzer.ErAnalyzer

Syntax

ErAnalyzer: IEaxAnalyzer;

Description

The ErAnalyzer property determines the express report, implemented by the IEaxAnalyzer interface.

Example

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Var

MB: IMetabase;

Begin

MB:=MetabaseClass.Active;

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

UiErAnalyzer1.Active:=True;

End Sub Button1OnClick;

 

After executing the example clicking the button sets the express report with the EXPRESS_REPORT identifier as a data source for the UiErAnalyzer1 component. Then the component is activated.

See also:

IUiErAnalyzer