Sub OnLanerCellChange(Sender: Object; Args: IEventArgs);
Begin
//set of operators;
End Sub OnLanerCellChange;
Sender. Component that has generated the event.
Args. Event parameters.
The OnLanerCellChange event occurs when value of a workbook table cell is changed.
Parameters of this event cannot be changed.
Executing the example requires a form, the LanerBox component named LanerBox1 on the form, and the UiErAnalyzer component used as a data source for LanerBox. The workbook of time series database must be loaded to the UiErAnalyzer. The form also contains the Memo component with the Memo1 identifier.
This procedure should should be assigned as a handler of the OnLanerCellChange event for the LanerBox component.
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: