[]
Occurs when the report printing is cancelled.
public event EventHandler PrintAborted
Type | Description |
---|---|
EventHandler | Occurs when the report printing is cancelled. |
var sectionReport = new GrapeCity.ActiveReports.SectionReport();
sectionReport.Document.Printer.PrinterName = String.Empty;
sectionReport.PrintAborted += (sender, e) =>
{
label1.Text = "Printing was interrupted";
};