OnMouseMove

Syntax

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

Begin

//set of operators;

End Sub OnMouseMove;

Parameters

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

Args. Parameter that enables the user to determine event parameters.

Description

The OnMouseMove event occurs when the mouse cursor moves over a component.

Comments

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

  1. OnMouseEnter

  2. OnMouseMove

  3. OnMouseHover / OnMouseDown / OnMouseWheel

  4. OnMouseUp

  5. OnMouseLeave

See also:

IControl