Vcl.Controls.TInteractiveGestureFlags

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TInteractiveGestureFlags = set of TInteractiveGestureFlag;

C++

typedef System::Set<TInteractiveGestureFlag, TInteractiveGestureFlag::gfBegin, TInteractiveGestureFlag::gfEnd> TInteractiveGestureFlags;

Properties

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

Description

Specifies a set of possible flags for an interactive gesture event.

TInteractiveGestureFlags is a set of flags attached to interactive gesturing events. The flags denote the state of an interactive gesture.


TInteractiveGestureFlags can have one or more of the following values:

Value Meaning

gfBegin

The interactive gesture has just begun.

gfInertia

The interactive gesture is continuing inertially.

gfEnd

The interactive gesture is ending.


See Also