Analyzer: IEaxAnalyzerSource;
Analyzer: Prognoz.Platform.Interop.Express.IEaxAnalyzerSource;
The Analyzer property determines a data source for the component.
It is required to specify the UiErAnalyzer component connected to the required repository express report.
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.
The requirements and result of the Fore.NET Example execution match with those in the Fore Example. Use Fore.NET analogs instead of Fore components.
Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Begin
EaxDocumentViewerBoxNet1.Analyzer := uiErAnalyzerNet1;
uiErAnalyzerNet1.Active := True;
End Sub;
See also: