LanerBox.OnLanerCellChange

Syntax

OnLanerCellChange(Sender: Object; Args: IEventArgs);

Parameters

Sender. The component that generated the event.

Args. Event parameters.

Description

The OnLanerCellChange event occurs when value of a workbook table cell is changed.

Comments

Parameters of this event cannot be changed.

Example

Executing the example requires a form, the LanerBox component named LanerBox1 on the form and the UiErAnalyzer component that is a data source for LanerBox. A workbook of time series database should be loaded to UiErAnalyzer. The form also contains the Memo component with the Memo1 identifier.

The described procedure should be assigned as a handler of the OnLanerCellChange event for LanerBox.

Sub LanerBox1OnLanerCellChange(Sender: Object; Args: IEventArgs);
Begin
    Memo1.Lines.Add("Value of a workbook table cell is changed");
End Sub LanerBox1OnLanerCellChange;

On changing value of a workbook table cell, information on this is displayed in the Memo1 component.

See also:

LanerBox