[]
Occurs at the end of report processing.
public event EventHandler ReportEnd
Type | Description |
---|---|
EventHandler | Occurs at the end of report processing. |
bool completed = false;
var sectionReport = new GrapeCity.ActiveReports.SectionReport();
sectionReport.Document.Printer.PrinterName = String.Empty;
sectionReport.ReportEnd += (sender, e) =>
completed = true;