Vcl.Controls.TInteractiveGestureFlag

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TInteractiveGestureFlag = (gfBegin, gfInertia, gfEnd);

C++

enum DECLSPEC_DENUM TInteractiveGestureFlag : unsigned char { gfBegin, gfInertia, gfEnd };

Properties

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

Description

Enumerates the possible flags an interactive gesture event can specify.

TInteractiveGestureFlag enumerates a set of flags that are attached to interactive gesturing events. These flags denote the state of an interactive gesture.


The possible values of TInteractiveGestureFlag are listed in the following table:

Value Meaning

gfBegin

The interactive gesture just begun.

gfInertia

The interactive gesture is continuing inertially.

gfEnd

The interactive gesture is ending.


See Also