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!

PrintDocument.RemoveOnBeginPrint

Removes an event handler that has been associated with the OnBeginPrint event.

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

Parameters

handler
The PrintEventHandler delegate to remove.

Remarks

If there are duplicate entries, all are removed.

See Also

PrintDocument Class | PrintDocument Members | System.Drawing.Printing Namespace | AddOnBeginPrint