[]
Occurs during printing at the beginning of each printed page.
public event EventHandler PrintProgress
Type | Description |
---|---|
EventHandler | Occurs during printing at the beginning of each printed page. |
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++;
};