FMX.Pickers.TDatePickerShowMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TDatePickerShowMode = (Date, Time, DateTime);

C++

enum class DECLSPEC_DENUM TDatePickerShowMode : unsigned char { Date, Time, DateTime, psmDate _DEPRECATED_ATTRIBUTE3("Use TDatePickerShowMode.Date")  = 0x0, psmTime _DEPRECATED_ATTRIBUTE3("Use TDatePickerShowMode.Time")  = 0x1, psmDateTime _DEPRECATED_ATTRIBUTE3("Use TDatePickerShowMode.DateTime")  = 0x2 };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Pickers.pas
FMX.Pickers.hpp
FMX.Pickers FMX.Pickers

Description

Specifies the display mode of the Date-Time picker.

The possible options are:

Value Meaning

Date

Only the time is displayed.

Time

Only the date is displayed.

DateTime

Both the date and time are displayed.

Note: For the moment, TDatePickerShowMode is used only under iOS and Android platforms. For Android DateTime is not suported.

See Also