[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.SectionReport.PrintProgress

PrintProgress Event

Occurs during printing at the beginning of each printed page.

Namespace: GrapeCity.ActiveReports
Assembly: MESCIUS.ActiveReports.dll
Syntax
public event EventHandler PrintProgress
Returns
Type Description
EventHandler Occurs during printing at the beginning of each printed page.
Examples
var sectionReport = new GrapeCity.ActiveReports.SectionReport();
sectionReport.Document.Printer.PrinterName = String.Empty;
int x = 1;
sectionReport.PrintProgress += (sender, e) =>
{
	label1.Text = "Page is printing: " + x;
	x++;
};