FMX.Forms.TCommonCustomForm.MouseMove

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TCommonCustomForm

Description

Executes each time you move the mouse over the surface of this form.

MouseMove has the following parameters:

  • Shift determines the state of the CTRL, ALT, and SHIFT keys at the moment you released the mouse button.
  • X specifies the horizontal position of the mouse.
  • Y specifies the vertical position of the mouse.

See Also