FMX.Controls.TControlType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TControlType = (Styled, Platform);

C++

enum class DECLSPEC_DENUM TControlType : unsigned char { Styled, Platform };

Properties

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

Description

The type of a presentation control that a presented control renders, either Styled or Platform.

TControlType defines the following values:

  • Styled represents the standard FireMonkey styled control. Such controls look the same on all versions of a given platform.
  • Platform represents the native control of the target platform.

For details see FireMonkey Native Controls and TPresentedControl.ControlType.

See Also