Vcl.Grids.TInplaceEditList.MouseMove

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure MouseMove(Shift: TShiftState; X, Y: Integer); override;

C++

DYNAMIC void __fastcall MouseMove(System::Classes::TShiftState Shift, int X, int Y);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TInplaceEditList

Description

Provides special processing when the user moves the mouse over the control area.

Override the protected MouseMove method to provide a response when the user hovers the mouse cursor over the TInplaceEditList object's area. MouseMove generates an OnMouseMove event.

The Shift parameter indicates which shift keys (Shift, Ctrl, or Alt) were down when the user moved the mouse. X and Y are the pixel coordinates of the mouse pointer within the client area of the control.

See Also