[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Document.SectionDocument.PrintProgress

PrintProgress Event

Occurs when the document pages are printing.

Namespace: GrapeCity.ActiveReports.Document
Assembly: MESCIUS.ActiveReports.dll
Syntax
public event PrintProgressEventHandler PrintProgress
Returns
Type Description
PrintProgressEventHandler Occurs when the document pages are printing.
Examples
private GrapeCity.ActiveReports.SectionReport sectionReport = new GrapeCity.ActiveReports.SectionReport();
private int pageNum = 0;
private void button_Click(object sender, RoutedEventArgs e)
{
	sectionReport.Document.PrintProgress  += (sender, e) =>
	{
		label1.Text = "Printing page: " + pageNum;
		pageNum++;
	};
	sectionReport.Document.Print();
}