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!

PrintController.EndPrint

Called immediately after the PrintDocument's EndPrint event is raised. This method will be called even if an uncaught exception was thrown while printing.

[Visual Basic]
MustOverride Public Sub EndPrint( _
   ByVal document As PrintDocument, _
   ByVal e As PrintEventArgs _
)
[C#]
public abstract void EndPrint(
   PrintDocument document,
   PrintEventArgs e
);
[C++]
public: virtual void EndPrint(
   PrintDocument* document,
   PrintEventArgs* e
) = 0;
[JScript]
public abstract function EndPrint(
   document : PrintDocument,
   e : PrintEventArgs
);

Parameters

document
The document being printed.
e
A PrintEventArgs that contains the event data.

See Also

PrintController Class | PrintController Members | System.Drawing.Printing Namespace