Vcl.Touch.Gestures.FindStandardGesture

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function FindStandardGesture(AGestureID: TGestureID; var AGestureData: TStandardGestureData): Boolean;
function FindStandardGesture(const AName: string; var AGestureID: TGestureID): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall FindStandardGesture(Vcl::Controls::TGestureID AGestureID, TStandardGestureData &AGestureData)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
Vcl.Touch.Gestures.pas
Vcl.Touch.Gestures.hpp
Vcl.Touch.Gestures Vcl.Touch.Gestures

Description

Looks up a standard gesture.

Use FindStandardGesture to obtain the TStandardGestureData structure describing a given standard gesture. The AGestureID specifies the ID of the standard gesture. AGestureData specifies an output parameter that will be filled with the gesture information. FindStandardGesture returns true if the gesture was found, and false otherwise.

See Also