FMX.Grid.TCustomGrid.OnEditingDone

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnEditingDone: TOnEditingDone read GetOnEditingDone write SetOnEditingDone;

C++

__property TOnEditingDone OnEditingDone = {read=GetOnEditingDone, write=SetOnEditingDone};

Properties

Type Visibility Source Unit Parent
event public
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TCustomGrid

Description

This event is fired after editing a cell of the Grid. The event is not fired if the editing is cancelled via the ESC key.

Write an OnEditingDone event handler to take specific actions when you edit cells in this grid.

For instance, when you paste a string into one of the cells, an OnEditingDone event immediately occurs.

See Also