Sub OnMouseMove(Sender: Object; Args: IMouseEventArgs);
Begin
//set of operators;
End Sub OnMouseMove;
Sender. Parameter that returns the component that has generated the event.
Args. Parameter that enables the user to determine event parameters.
The OnMouseMove event occurs when the mouse cursor moves over a component.
The events connected with mouse cursor occur in the following order:
OnMouseMove
See also: