PrintDocument.EndPrint Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the last page of the document has printed.
public:
event System::Drawing::Printing::PrintEventHandler ^ EndPrint;
public event System.Drawing.Printing.PrintEventHandler EndPrint;
member this.EndPrint : System.Drawing.Printing.PrintEventHandler
Public Custom Event EndPrint As PrintEventHandler
Event Type
Remarks
Typically, you handle the EndPrint event to release fonts, file streams, and other resources used during the printing process, like fonts.
You indicate that there are no more pages to print by setting the PrintPageEventArgs.HasMorePages property to false
in the PrintPage event. The EndPrint event also occurs if the printing process is canceled or an exception occurs during the printing process.
To associate the event with your event handler, add an instance of the PrintEventHandler delegate to the event. The event handler is called whenever the event occurs. For more information about handling events with delegates, see Handling and Raising Events.