IEaxConfigurationPanel.Analyzer

Syntax

Analyzer: IEaxAnalyzerSource;

Description

The Analyzer property determines a data source for the component.

Comments

Only UiErAnalyzer can be used as a data source.

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.

See also:

IEaxConfigurationPanel