FMX.Grid.TOnSetValue

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TOnSetValue = procedure(Sender: TObject; const ACol, ARow: Integer; const Value: System.Rtti.TValue) of object;

C++

typedef void __fastcall (__closure *TOnSetValue)(System::TObject* Sender, const int ACol, const int ARow, const System::Rtti::TValue &Value);

Properties

Type Visibility Source Unit Parent
type
typedef
public
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid FMX.Grid

Description

Type of a event used to pass a Value to assign in an external repository.

TOnSetValue is the type of OnSetValue event handlers, used when setting a Value retrieved from a cell in a grid to an external repository like a database or other custom store.

See Also