[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.SectionReport.PrintAborted

PrintAborted Event

Occurs when the report printing is cancelled.

Namespace: GrapeCity.ActiveReports
Assembly: MESCIUS.ActiveReports.dll
Syntax
public event EventHandler PrintAborted
Returns
Type Description
EventHandler Occurs when the report printing is cancelled.
Examples
var sectionReport = new GrapeCity.ActiveReports.SectionReport();
sectionReport.Document.Printer.PrinterName = String.Empty;
sectionReport.PrintAborted += (sender, e) =>
{
	label1.Text = "Printing was interrupted";
};