Sub OnMouseMove(Sender: Object; Args: IMouseEventArgs);
Begin
//set of operators;
End Sub OnMouseMove;
Sender. Parameter that returns the component that generated the event.
Args. Parameter that allows to determine the event parameters.
The OnMouseMove event occurs on moving the cursor over component.
The events connected with mouse cursor occur in the following order:
OnMouseMove
OnMouseHover / OnMouseDown / OnMouseWheel
See also: