Express > Express Assembly Interfaces > ILanerBox > ILanerBox.Object
Object: IUiErAnalyzer;
The Object property determines the object used as the component data source.
The data source of LanerBox is the development environment component - UiErAnalyzer.
Executing the example requires a form containing the LanerBox component named LanerBox1, the LanerResultsBox component named LanerResultsBox1, and the UiErAnalyzer component named UiErAnalyzer1. A workbook of the time series database must be loaded to UiErAnalyzer1.
This procedure must be assigned as a handler of the OnCreate event for the form.
Sub LanerBoxFormOnCreate(Sender: Object; Args: IEventArgs);
Begin
LanerBox1.Object := UiErAnalyzer1;
LanerResultsBox1.Object := UiErAnalyzer1;
UiErAnalyzer1.Active := True;
End Sub LanerBoxFormOnCreate;
The UiErAnalyzer1 component will be determined as data source for LanerBox1 and LanerResultsBox1 on creating a form.
See also: