IEaxConfigurationPanel.Analyzer

Fore Syntax

Analyzer: IEaxAnalyzerSource;

Fore.NET Syntax

Analyzer: Prognoz.Platform.Interop.Net.UiErAnalyzerNet;

Description

The Analyzer property determines a data source for the component.

Comments

Only UiErAnalyzer can be used as a data source.

 Fore Example

Executing the example requires that the form contains the EaxConfigurationPanel component named EaxConfigurationPanel1 and the UiErAnalyzer component named UiErAnalyzer1.

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

After executing the example UiErAnalyzer1 is used as a data source for EaxConfigurationPanel1.

 Fore.NET Example

Executing the example requires the .NET form containing the EaxConfigurationPanelNet component named EaxConfigurationPanelNet1 and the UiErAnalyzerNet component named UiErAnalyzerNet1.

Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Begin
    EaxConfigurationPanelNet1.Analyzer := uiErAnalyzerNet1;
End Sub;

After executing the example UiErAnalyzer1 is used as a data source for EaxConfigurationPanel1.

See also:

IEaxConfigurationPanel