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.RemoveOnMouseUp

Removes the given handler for the "OnMouseUp" event. If there are duplicate entries, ALL are removed.

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

Parameters

handler
Event handler to be removed.

See Also

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