FMX.Pickers.TDropDownKind

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TDropDownKind = (Custom, Native);

C++

enum class DECLSPEC_DENUM TDropDownKind : unsigned char { Custom, Native };

Properties

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

Description

Defines whether to use TCustomListPicker pickers providing platform-specific drop-down lists to select string items.

The TDropDownKind type is used in the TComboEdit, TComboBox, and TPopupBox controls to define whether to use the TCustomListPicker picker to provide platform-specific controls to select string items from drop-down lists.

The TDropDownKind type defines the following constants:

Constant Description

Custom

Defines to use the standard FireMonkey drop-down list controls to select string items from drop-down lists.

Native

Defines to use the TCustomListPicker picker to provide platform-specific list controls to select string items from drop-down lists.

See Also