FMX.TreeView.TCustomTreeView.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.TreeView.pas
FMX.TreeView.hpp
FMX.TreeView TCustomTreeView

Description

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

FMX.TreeView.TCustomTreeView.MouseMove inherits from FMX.Layouts.TCustomScrollBox.MouseMove. All content below this line refers to FMX.Layouts.TCustomScrollBox.MouseMove.

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

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

The Shift parameter specifies the keyboard state (for instance, the CTRL key pressed at the same time with the mouse click).

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

See Also