Vcl.Controls.TDockTree.MouseMove

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure MouseMove(Shift: TShiftState; X, Y: Integer;
var Handled: Boolean); virtual;

C++

virtual void __fastcall MouseMove(System::Classes::TShiftState Shift, int X, int Y, bool &Handled);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TDockTree

Description

MouseMove is called when the user hovers the mouse cursor.

Override the protected MouseMove method to provide a response when the user hovers the mouse cursor over the TDockTree object's area.

The Shift parameter indicates whether the shift keys (SHIFT, CTRL, ALT) are pressed. X and Y are the pixel coordinates of the mouse cursor within the client area of the control. Handled is used to prevent the control from receiving the message.

See Also