FMX.Types.TInteractiveGestureFlags

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type TInteractiveGestureFlags = set of TInteractiveGestureFlag;

C++

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

Properties

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

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