FMX.Controls.TControl.OnDblClick

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnDblClick: TNotifyEvent read FOnDblClick write FOnDblClick;

C++

__property System::Classes::TNotifyEvent OnDblClick = {read=FOnDblClick, write=FOnDblClick};

Properties

Type Visibility Source Unit Parent
event public
FMX.Controls.pas
FMX.Controls.hpp
FMX.Controls TControl

Description

Occurs when the left mouse button is double-clicked with the pointer over the control.

OnDblClick also occurs when DblClick is called.

For controls (such as TLabel and TPathLabel) that have the HitTest property set to False by default, the OnClick and OnDblClick mouse events pass through to the control behind this control.

See Also