Show contents 

Express > Express Assembly Interfaces > ILanerBox > ILanerBox.Object

ILanerBox.Object

Syntax

Object: IUiErAnalyzer;

Description

The Object property determines the object used as the component data source.

Comments

The data source of LanerBox is the development environment component - UiErAnalyzer.

Example

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:

ILanerBox | UiErAnalyzer