FMX.Grid.TColumn.EditingDone

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function EditingDone(const InplaceEdit: TObject; const Value: TValue; const Accept: Boolean): Boolean;

C++

bool __fastcall EditingDone(System::TObject* const InplaceEdit, const System::Rtti::TValue &Value, const bool Accept);

Properties

Type Visibility Source Unit Parent
function public
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TColumn

Description

Called when the user finishes using the specified column editor (InplaceEdit) on a cell.

Value contains the value defined with the column editor.

If Accept is True, EditingDone changes the value of the cell to Value and returns True on success or False otherwise.
If Accept is False, EditingDone always returns True.

See Also