FMX.Types.TCustomGestureManager.SetStandardGestures

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetStandardGestures(AControl: TComponent; AStandardGestures: TStandardGestures); virtual; abstract;

C++

virtual void __fastcall SetStandardGestures(System::Classes::TComponent* AControl, const TStandardGestures &AStandardGestures) = 0 ;

Properties

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

Description

Associates a set of standard gestures with a control.

Override the SetStandardGestures method in descending classes to implement a proper code that associates a set of standard gestures with a control.

SetStandardGestures is used to associate a set of standard gestures with a given control. SetStandardGestures expects two parameters, AControl and AStandardGestures. AControl is the control to which the gestures are being assigned and AStandardGestures is a set of standard gestures to be associated with the control.

GetStandardGestures is the setter method for the StandardGestures property.

See Also