Version

PrintProgress Event

Occurs as each page is printed or exported.
Syntax
'Declaration
 
Public Event PrintProgress As EventHandler(Of PrintProgressEventArgs)
public event EventHandler<PrintProgressEventArgs> PrintProgress
Event Data

The event handler receives an argument of type PrintProgressEventArgs containing data related to this event. The following PrintProgressEventArgs properties provide information specific to this event.

PropertyDescription
Cancel (Inherited from System.ComponentModel.CancelEventArgs) 
CurrentPageNumber Returns the number of page currently being printed
Description Returns/sets descriptive information displayed in the progress window when the content of a grid is being printed.
PercentCompleted Returns a value representing the percentage of the printing process that has been completed
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also