FMX.Types.TGestureTypes

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TGestureTypes = set of TGestureType;

C++

typedef System::Set<TGestureType, _DELPHI_SET_ENUMERATOR(TGestureType::Standard), _DELPHI_SET_ENUMERATOR(TGestureType::None)> TGestureTypes;

Properties

Type Visibility Source Unit Parent
set
typedef
public
FMX.Types.pas
FMX.Types.hpp
FMX.Types FMX.Types

Description

Specifies a set of gesture types.

TGestureTypes is a set of gesture types. The FireMonkey gesturing framework allows three types of gestures: standard, custom, and registered.


The following are possible values of TGestureTypes.

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.

Note: Currently, only standard gestures are supported, even though the FMX.Types.TGestureType enum contains other values (like recorded or registered).

See Also