Vcl.Controls.TGestureType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TGestureType = (gtStandard, gtRecorded, gtRegistered, gtNone);

C++

enum DECLSPEC_DENUM TGestureType : unsigned char { gtStandard, gtRecorded, gtRegistered, gtNone };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

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.


See Also