FMX.Controls.TControlType
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
Type of presentation control that a presented control renders, either Styled
(default) or Platform
(native).
When a presented control is of type Styled
, the control renders a FireMonkey presentation control. FireMonkey presentation controls use FireMonkey styles, and they look the same on all version of a given platform.
When a presented control is of type Platform
, the control render a native control of the target platform instead of a FireMonkey presentation control.
For details see TPresentedControl.ControlType.