FMX.Grid.TCustomGrid.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 TCustomGrid

Description

Occurs immediately when you edit the contents of one of the cells in this grid.

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

If, for instance, you paste a string into one of the cells, an OnEditingDone event immediately occurs. However, keep in mind that OnEditingDone occurs immediately after you type in each individual character of a string, for instance.

See Also