[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.SectionReport.ReportEnd

ReportEnd Event

Occurs at the end of report processing.

Namespace: GrapeCity.ActiveReports
Assembly: MESCIUS.ActiveReports.dll
Syntax
public event EventHandler ReportEnd
Returns
Type Description
EventHandler Occurs at the end of report processing.
Examples
bool completed = false;
var sectionReport = new GrapeCity.ActiveReports.SectionReport();
sectionReport.Document.Printer.PrinterName = String.Empty;
sectionReport.ReportEnd += (sender, e) =>
	completed = true;