FMX.StdCtrls.TCustomButton.DblClick

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DblClick; override;

C++

virtual void __fastcall DblClick();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FMX.StdCtrls.pas
FMX.StdCtrls.hpp
FMX.StdCtrls TCustomButton

Description

Responds to user double-clicks.

DblClick is an event handler for the OnDblClick event. It is automatically called when the left mouse button is pressed and released twice consecutively with the pointer over the control.

Call DblClick in applications to simulate a mouse OnDblClick event.

If ModalResult is defined, the ModalResult property of its parent form is set to the same value as the button's ModalResult property.

See Also