ActiveReports 8
PrintAborted Event
See Also  Example
GrapeCity.ActiveReports.v8 Assembly > GrapeCity.ActiveReports Namespace > SectionReport Class : PrintAborted Event

Glossary Item Box

Raised when the user cancels a print job.

Syntax

Visual Basic (Declaration) 
Public Event PrintAborted As System.EventHandler
C# 
public event System.EventHandler PrintAborted

Example

C#Copy Code
private void SectionReport1_PrintAborted(object sender, System.EventArgs eArgs)
{
    System.Windows.Forms.MessageBox.Show("Printing has been aborted.");
}
Visual BasicCopy Code
Private Sub SectionReport1_PrintAborted(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.PrintAborted
    MessageBox.Show("Printing has been aborted.")
End Sub

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also