PrintAborted Event (PrinterSettings)
Occurs when the printing process is aborted.
This example demonstrates how to subscribe to the
PrintAborted event and handle it:
GrapeCity.ActiveReports.PrinterSettings printerSettings = new GrapeCity.ActiveReports.PrinterSettings();
printerSettings.PrintAborted += PrinterSettings_PrintAborted;
private void PrinterSettings_PrintAborted(object sender, EventArgs e)
{
Console.WriteLine("The printing process has been aborted.");
// Additional logic to handle the aborted print job can be added here
}