Show: Delphi
C++
Display Preferences
FMX.Types.TGestureType
From XE3 API Documentation
Delphi
TGestureType = (gtStandard, gtRecorded, gtRegistered, gtNone);
C++
enum class DECLSPEC_DENUM TGestureType : unsigned int { gtStandard, gtRecorded, gtRegistered, gtNone };
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 VCL gesturing framework allows three types of gestures: standard, custom, and registered.
The following are possible values of TGestureType:
| Value | Meaning |
|---|---|
|
gtStandard |
Identifies a standard gesture. Standard gestures are bundled with the VCL framework. |
|
gtRecorded |
Identifies a recorded gesture. Recorded gestures are created in an application using the gesture recorder. |
|
gtRegistered |
Represents a registered gesture. Registered gestures are custom gestures that are bundled in third-party packages. |