FMX.Types.TGestureType
Delphi
TGestureType = (Standard, Recorded, Registered, None);
C++
enum class DECLSPEC_DENUM TGestureType : unsigned int { Standard, Recorded, Registered, None };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | FMX.Types |
Description
Enumerates the possible gesture types.
TGestureType enumerates the possible gesture types. The FireMonkey gesturing framework allows three types of gestures: standard, custom, and registered.
The following are possible values of TGestureType:
Value | Meaning |
---|---|
Standard |
Identifies a standard gesture. Standard gestures are bundled with the FireMonkey framework. |
Recorded |
Identifies a recorded gesture. Recorded gestures are created in an application using the gesture recorder. |
Registered |
Represents a registered gesture. Registered gestures are custom gestures that are bundled in third-party packages. |
None |
Used internally, for registered gestures. The gesture is not any of the other values, it is undecided yet, or it could not be determined (perhaps due to an error). |
- Note: Currently, only standard gestures are supported, even though the FMX.Types.TGestureType enum contains other values (like recorded or registered).