FMX.Grid.TGridModel.OnEditingDone

From RAD Studio API Documentation
Jump to: navigation, search

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:

  • Sender is the presentation object that owns this model.
  • ACol is the column number of the edited cell.
  • ARow is the row number of the edited cell.

See Also