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!

RichControl.RemoveOnPaint

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

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

Parameters

handler
Event handler to be removed.

See Also

RichControl Class | RichControl Members | System.WinForms Namespace | AddOnPaint