FMX.Layers3D.TAbstractLayer3D.LayerMouseMove

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

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 TAbstractLayer3D

Description

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.

See Also