Vcl.Controls.TCustomGestureManager.UnregisterControl

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

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

Description

Unregisters a control, preventing it from receiving gesture notifications.

Override UnregisterControl in descending classes to implement proper control unregistering from the gesture notification system. UnregisterControl removes the control given by the AControl parameter from an internal list. All the gestures that were associated with the removed control are freed.

See Also