PrintController.OnEndPage Method
Assembly: System.Drawing (in system.drawing.dll)
'Declaration Public Overridable Sub OnEndPage ( _ document As PrintDocument, _ e As PrintPageEventArgs _ ) 'Usage Dim instance As PrintController Dim document As PrintDocument Dim e As PrintPageEventArgs instance.OnEndPage(document, e)
public void OnEndPage ( PrintDocument document, PrintPageEventArgs e )
public function OnEndPage ( document : PrintDocument, e : PrintPageEventArgs )
Not applicable.
Parameters
- document
A PrintDocument that represents the document currently being printed.
- e
A PrintPageEventArgs that contains the event data.
OnEndPage is called immediately after the PrintDocument raises the PrintPage event. If an exception is thrown inside a PrintPage event of a PrintDocument, OnEndPage is not called.
OnStartPrint creates the Graphics that is sent to the printer. After OnStartPrint is called, the OnStartPage method sets the Graphics to a graphic of a single page. (Use the OnStartPage method to set how to print a page in a document. For example, you can adjust page settings separately for each page.) The OnEndPage method clears the Graphics, while the OnEndPrint method deallocates the object.
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.