Vcl.Controls.TCustomGestureManager.SetStandardGestures

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

virtual void __fastcall SetStandardGestures(TControl* AControl, const TStandardGestures &AStandardGestures) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls 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