Description


Occurs when editing a cell is successfully completed.


When editing a cell, the following chain of events is triggered: OnBeforeEdit > OnAplyEditText > OnEditAccept > OnAfterEdit





Example


procedure Form1_TableGrid1_OnAfterEdit (Sender: TObject; ACol, ARow: Integer; Value: String);
begin
    ShowMessage(Value); // display the value entered by the user in the cell
end;