FMX.Grid.TGrid.OnEditingDone

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnEditingDone: TOnEditingDone read GetOnEditingDone write SetOnEditingDone;

C++

__property OnEditingDone;

Properties

Type Visibility Source Unit Parent
event published
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TGrid

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.

FMX.Grid.TGrid.OnEditingDone inherits from FMX.Grid.TCustomGrid.OnEditingDone. All content below this line refers to FMX.Grid.TCustomGrid.OnEditingDone.

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