FMX.Forms.TDeviceKind

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TDeviceKind = (Desktop, iPhone, iPad);

C++

enum class DECLSPEC_DENUM TDeviceKind : unsigned int { Desktop, iPhone, iPad, dkDesktop _DEPRECATED_ATTRIBUTE3("Use TDeviceKind.Desktop")  = 0x0, dkiPhone _DEPRECATED_ATTRIBUTE3("Use TDeviceKind.iPhone")  = 0x1, dkiPad _DEPRECATED_ATTRIBUTE3("Use TDeviceKind.iPad")  = 0x2 };

Properties

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

Description

Represents an enumeration of the target device kinds.

The following table lists the values of TDeviceKind:

Name Description
Desktop The target platform is a desktop computer.
Phone The target platform is an Apple mobile phone (iPhone).
Pad The target platform is an Apple iPad device.

See Also