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