Vcl.Controls.TControl.DblClick

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DblClick; dynamic;

C++

DYNAMIC void __fastcall DblClick();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TControl

Description

OnDblClick event dispatcher.

DblClick calls any event handler attached to the OnDblClick event. Override DblClick to provide other responses in addition to the inherited event-handler call when the user double-clicks the control.

The DblClick method is triggered by left mouse-button double-click message (WM_LBUTTONDBLCLK) from Windows.

See Also