PrintDocument.EndPrint Event
Occurs when the last page of the document has printed.
Namespace: System.Drawing.Printing
Assembly: System.Drawing (in System.Drawing.dll)
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 Events and Delegates.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.