Sub OnMouseUp(Sender: Object; Args: IMouseClickEventArgs);
Begin
//set of operators;
End Sub OnMouseUp;
Sender. Parameter that returns the component that has generated the event.
Args. Parameter that enables the user to determine event parameters.
The OnMouseUp event occurs when the mouse button is released and the cursor is in the component area.
The events connected with mouse cursor occur in the following order:
OnMouseUp
See also: