FMX.Types.TCustomGestureEngine.TGestureEngineFlag

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TGestureEngineFlag = (MouseEvents, TouchEvents);

C++

enum class DECLSPEC_DENUM TGestureEngineFlag : unsigned int { MouseEvents, TouchEvents, efMouseEvents _DEPRECATED_ATTRIBUTE3("Use TGestureEngineFlag.MouseEvents")  = 0x0, efTouchEvents _DEPRECATED_ATTRIBUTE3("Use TGestureEngineFlag.TouchEvents")  = 0x1 };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Types.pas
FMX.Types.hpp
FMX.Types TCustomGestureEngine

Description

Enumerates the flags associated with a gesturing engine.

TGestureEngineFlag enumerates a set of flags that can be associated with a gesturing engine. The possible values of TGestureEngineFlag are listed in the following table.



Value Meaning

MouseEvents

The engine responds to mouse events.

TouchEvents

The engine responds to touch events.



See Also