IErAnalyzerDimPanel.Object

Syntax

Object: IUiErAnalyzer;

Description

The Object property determines the UiErAnalyzer component that will be used as a data source.

Example

Executing the example requires a form with the button having the Button1 identifier, the ErAnalyzerDimPanel component with the ErAnalyzerDimPanel1 identifier and the TabSheetBox component with the TabSheetBox1 identifier used to control express report data and the UiErAnalyzer component with the UiErAnalyzer1 identifier which is a data source.

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

Begin

TabSheetBox1.Source := UiErAnalyzer1 As ITabSheetSource;

ErAnalyzerDimPanel1.Object := UiErAnalyzer1;

End Sub Button1OnClick;

 

After executing the example, clicking the button sets the component with the UiErAnalyzer1 identifier as a data source for the TabSheetBox1 and ErAnalyzerDimPanel1 components.

See also:

IErAnalyzerDimPanel