Vcl.Controls.TMouseMoveEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TMouseMoveEvent = procedure(Sender: TObject; Shift: TShiftState;
X, Y: Integer) of object;

C++

typedef void __fastcall (__closure *TMouseMoveEvent)(System::TObject* Sender, System::Classes::TShiftState Shift, int X, int Y);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

Description

TMouseMoveEvent is the function type for an OnMouseMove event.

TMouseMoveEvent has the following parameters:



Parameter Meaning

Sender

The control that generated the event.

Shift

The shift state during the mouse movement operation.

X | Y

The current mouse coordinates.



See Also