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