Sub OnAfterEdit(Sender: Object; Args: IDataGridCellAfterEditEventArgs);
Begin
//set of operators;
End Sub OnAfterEdit;
The Sender parameter returns the component that has generated the event.
The Args parameter allows to determine event parameters.
The OnAfterEdit event occurs after an attempt to change the cell value.
See also: