FMX.Grid.TGridModel.OnEditingDone
Delphi
property OnEditingDone: TOnEditingDone read FOnEditingDone write FOnEditingDone;
C++
__property TOnEditingDone OnEditingDone = {read=FOnEditingDone, write=FOnEditingDone};
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| event | public | FMX.Grid.pas FMX.Grid.hpp | FMX.Grid | TGridModel | 
Description
Occurs after the value of a cell is modified using a cell editor and that value is successfully updated on the data source.
The handler of OnEditingDone receives the following parameters:
- Senderis the presentation object that owns this model.
- AColis the column number of the edited cell.
- ARowis the row number of the edited cell.