Vcl.Controls.TCustomGestureManager.RegisterControl

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RegisterControl(AControl: TControl); virtual; abstract;

C++

virtual void __fastcall RegisterControl(TControl* AControl) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TCustomGestureManager

Description

Registers a control to receive gesture notifications.

Override RegisterControl in descending classes to implement proper control registration into the gesture notification system. RegisterControl adds the control given by the AControl parameter into an internal list. You can then use the provided functionality to associate gestures to the newly registered control.

See Also