OnMouseUp

Syntax

Sub OnMouseUp(Sender: Object; Args: IMouseClickEventArgs);

Begin

//set of operators;

End Sub OnMouseUp;

Parameters

Sender. is a parameter that returns the component that generated the event.

Args. Parameter that allows to determine the event parameters.

Description

The OnMouseUp event occurs on releasing mouse button when the cursor is in component area.

Comments

The events connected with mouse cursor occur in the following order:

OnMouseEnter

OnMouseMove

OnMouseHover / OnMouseDown / OnMouseWheel

OnMouseUp

OnMouseLeave

See also:

IControl