PreviewPrintController.OnEndPrint(PrintDocument, PrintEventArgs) Method

Definition

Completes the control sequence that determines when and how to preview a print document.

public:
 override void OnEndPrint(System::Drawing::Printing::PrintDocument ^ document, System::Drawing::Printing::PrintEventArgs ^ e);
public override void OnEndPrint (System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintEventArgs e);
override this.OnEndPrint : System.Drawing.Printing.PrintDocument * System.Drawing.Printing.PrintEventArgs -> unit
Public Overrides Sub OnEndPrint (document As PrintDocument, e As PrintEventArgs)

Parameters

document
PrintDocument

A PrintDocument that represents the document being previewed.

e
PrintEventArgs

A PrintEventArgs that contains data about how to preview the print document.

Remarks

This method is called immediately after PrintDocument raises the EndPrint event. Even if an uncaught exception was thrown during the print preview process, OnEndPrint is called.

OnStartPrint creates the Graphics that is displayed during the print preview. After OnStartPrint is called, the OnStartPage method sets the Graphics to a graphic of a single page. The OnEndPage method clears the Graphics, while the OnEndPrint method deallocates the object.

Applies to

See also