FMX.Controls.TControl.OnMouseLeave

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnMouseLeave: TNotifyEvent read FOnMouseLeave write FOnMouseLeave;

C++

__property System::Classes::TNotifyEvent OnMouseLeave = {read=FOnMouseLeave, write=FOnMouseLeave};

Properties

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

Description

Occurs when the mouse cursor leaves the control area.

OnMouseLeave also occurs when DoMouseLeave is called.

Write an event handler for OnMouseLeave to specify what happens when the mouse cursor is moved outside the control area.

See Also