NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Control.AddOnMouseUp

Adds an event handler for the mouseUp event. The mouseUp event occurs when the user releases a mouse button inside the control.

[Visual Basic]
Overridable Public Sub AddOnMouseUp( _
   ByVal handler As MouseEventHandler _
)
[C#]
public virtual void AddOnMouseUp(
   MouseEventHandler handler
);
[C++]
public: virtual void AddOnMouseUp(
   MouseEventHandler* handler
);
[JScript]
public function AddOnMouseUp(
   handler : MouseEventHandler
);

Parameters

handler
New handler to install for this event.

See Also

Control Class | Control Members | System.WinForms Namespace | RemoveOnMouseUp