IEaxDocumentViewerBox.Analyzer

Syntax

Analyzer: IEaxAnalyzerSource;

Description

The Analyzer property determines a data source for the component.

Comments

It is required to specify the UiErAnalyzer component connected to the required repository express report.

Example

Executing the example requires a form with the Button1 button, the EaxDocumentViewerBox component named EaxDocumentViewerBox1, and the UiErAnalyzer component named UiErAnalyzer1. UiErAnalyzer1 is connected to a repository express report.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    EaxDocumentViewerBox1.Analyzer := UiErAnalyzer1 As IEaxAnalyzerSource;
    UiErAnalyzer1.Active := True;
End Sub Button1OnClick;

On clicking the button the UiErAnalyzer1 component is set as a data source for EaxDocumentViewerBox1.

See also:

IEaxDocumentViewerBox