OnMouseMove

Syntax

Sub OnMouseMove(Sender: Object; Args: IMouseEventArgs);

Begin

//set of operators;

End Sub OnMouseMove;

Parameters

Sender. Parameter that returns the component that generated the event.

Args. Parameter that allows to determine the event parameters.

Description

The OnMouseMove event occurs on moving the cursor over component.

Comments

The events connected with mouse cursor occur in the following order:

OnMouseEnter

OnMouseMove

OnMouseHover / OnMouseDown / OnMouseWheel

OnMouseUp

OnMouseLeave

See also:

IControl