FMX.Forms.TCommonCustomForm.OnMouseDown

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnMouseDown: TMouseEvent read FOnMouseDown write FOnMouseDown;

C++

__property Fmx::Types::TMouseEvent OnMouseDown = {read=FOnMouseDown, write=FOnMouseDown};

Properties

Type Visibility Source Unit Parent
event public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TCommonCustomForm

Description

Occurs when a mouse button is pressed over the form.

OnMouseDown also occurs when MouseDown is called.

Write an event handler for OnMouseDown to specify what happens when one of the mouse buttons is pressed over the form.

See Also