FMX.Pickers.TOnDateChanged

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TOnDateChanged = procedure(Sender: TObject; const ADateTime: TDateTime) of object;

C++

typedef void __fastcall (__closure *TOnDateChanged)(System::TObject* Sender, const System::TDateTime ADateTime);

Properties

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

Description

The method pointer type used to define date and time changing events for date and time pickers.

Event handlers of the TOnDateChanged type have the following parameters:

Parameter Description
Sender The FMX picker control that fired the event.
ADateTime Specifies the date and time values.

See Also