Vcl.Controls.TGestureTypes

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TGestureTypes = set of TGestureType;

C++

typedef System::Set<TGestureType, TGestureType::gtStandard, TGestureType::gtNone> TGestureTypes;

Properties

Type Visibility Source Unit Parent
set
typedef
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

Description

Specifies a set of gesture types.

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


The following are possible values of TGestureTypes.

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.


See Also