FMX.Controls3D.TControl3D.MouseMove
Delphi
procedure MouseMove(Shift: TShiftState; X, Y: Single);
C++
void __fastcall MouseMove(System::Classes::TShiftState Shift, float X, float Y);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
protected | FMX.Controls3D.pas FMX.Controls3D.hpp |
FMX.Controls3D | TControl3D |
Description
OnMouseMove event dispatcher.
Override the protected MouseMove method to provide other responses in addition to calling the OnMouseMove event handler when the user moves the mouse while the cursor's hot spot is over the control.
A 3D control calls MouseMove in response to any mouse-move events, decoding the message parameters into the shift key state and position, which it passes in the Shift
, X
, and Y
parameters, respectively.