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

Called immediately after the PrintDocument's PrintPage event is raised. If an exception is thrown inside the PrintDocument's PrintPage event, this method will not be called.

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

Parameters

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

See Also

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