FMX.Types.TGestureType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TGestureType = (Standard, Recorded, Registered, None);

C++

enum class DECLSPEC_DENUM TGestureType : unsigned int { Standard, Recorded, Registered, None, gtStandard _DEPRECATED_ATTRIBUTE3("Use TGestureType.Standard")  = 0, gtRecorded _DEPRECATED_ATTRIBUTE3("Use TGestureType.Recorded")  = 1, gtRegistered _DEPRECATED_ATTRIBUTE3("Use TGestureType.Registered")  = 2, gtNone _DEPRECATED_ATTRIBUTE3("Use TGestureType.None")  = 3 };

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).

See Also