FMX.Grid.Style.TStyledGrid.MouseMove

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

virtual void __fastcall MouseMove(System::Classes::TShiftState Shift, float X, float Y);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FMX.Grid.Style.pas
FMX.Grid.Style.hpp
FMX.Grid.Style TStyledGrid

Description

Internally executed while the mouse is moved over the surface of this grid.

You can call MouseMove programmatically in applications to simulate a mouse move event over this grid.

Shift indicates which keys--SHIFT, CTRL, ALT, and CMD (only for Mac)--were pressed when the mouse cursor was over the control.

The X and Y parameters specify the position of the mouse cursor on the screen.

Note: Override the protected MouseMove method to provide other responses when the mouse cursor moves over the control.

See Also