FMX.Types.TCustomGestureManager.GetStandardGestures

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetStandardGestures(AControl: TComponent): TStandardGestures; virtual; abstract;

C++

virtual TStandardGestures __fastcall GetStandardGestures(System::Classes::TComponent* AControl) = 0 ;

Properties

Type Visibility Source Unit Parent
function protected
FMX.Types.pas
FMX.Types.hpp
FMX.Types TCustomGestureManager

Description

Returns the set of standard gestures associated with a control.

Override the GetStandardGestures method in descending classes to implement proper standard gesture lookup.

GetStandardGestures is used to return the set of standard gestures associated with a given control. GetStandardGestures receives a single parameter, AControl.

GetStandardGestures is the getter method for the StandardGestures property.

See Also