FMX.Controls.TControl.OnMouseEnter

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnMouseEnter: TNotifyEvent read FOnMouseEnter write FOnMouseEnter;

C++

__property System::Classes::TNotifyEvent OnMouseEnter = {read=FOnMouseEnter, write=FOnMouseEnter};

Properties

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

Description

Occurs when the mouse cursor enters the area of the control.

OnMouseEnter also occurs when DoMouseEnter is called.

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

See Also