LanerBox.OnStartExecute

Syntax

Sub OnStartExecute(Sender: Object; Args: IEventArgs);

Begin

//set of operators;

End Sub OnStartExecute;

Parameters

Sender. Component that has generated the event.

Args. Event parameters.

Description

The OnStartExecute event occurs before the entire workbook is started to be calculated.

Comments

Parameters of this event cannot be changed.

The LanerBox.OnFinishExecute event occurs after the entire workbook is calculated.

Example

Executing the example requires a form containing the LanerBox component named LanerBox1 name, and the UiErAnalyzer component used as a data source for LanerBox. The workbook of time series database must be loaded to UiErAnalyzer. The form also contains the Memo component with the Memo1 identifier.

This procedure must be set the OnStartExecute event handler for the LanerBox component.

Sub LanerBox1OnStartExecute(Sender: Object; Args: ILanerBoxSerieEventArgs);
Begin
    Memo1.Lines.Add("Calculations in the workbook are started");
End Sub LanerBox1OnStartExecute;

After calculations in the workbook are started, the Memo1 component shows information on it.

See also:

LanerBox