Typically, you handle the PrintDocument.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 PrintDocument.PrintPage event. The PrintDocument.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 System.Drawing.Printing.PrintEventHandler delegate to the event. The event handler is called whenever the event occurs. For more information about handling events with delegates, see [<topic://cpconEventsDelegates>].