| Visual Basic (Declaration) | |
|---|---|
Public Event PrintAborted As System.EventHandler | |
| C# | |
|---|---|
public event System.EventHandler PrintAborted | |
| C# | Copy Code |
|---|---|
private void SectionReport1_PrintAborted(object sender, System.EventArgs eArgs) { System.Windows.Forms.MessageBox.Show("Printing has been aborted."); } | |
| Visual Basic | Copy 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 | |