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