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

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

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

Parameters

handler
The PrintEventHandler delegate to remove.

See Also

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