FMX.Layers3D.TSplitter3D.LayerMouseMove
Delphi
procedure LayerMouseMove(Shift: TShiftState; X, Y: Single); override;
C++
virtual void __fastcall LayerMouseMove(System::Classes::TShiftState Shift, float X, float Y);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
protected | FMX.Layers3D.pas FMX.Layers3D.hpp |
FMX.Layers3D | TSplitter3D |
Description
Is an OnLayerMouseMove event dispatcher.
FMX.Layers3D.TSplitter3D.LayerMouseMove inherits from FMX.Layers3D.TAbstractLayer3D.LayerMouseMove. All content below this line refers to FMX.Layers3D.TAbstractLayer3D.LayerMouseMove.
Is an OnLayerMouseMove event dispatcher.
Override the protected LayerMouseMove method to provide other responses in addition to calling the OnLayerMouseMove event handler when the user moves the mouse cursor over the 3D layer.
A 3D control calls LayerMouseMove 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.