Represents the method that will handle the PrintAborted event of an ActiveReportPrintControllerWithStatusDialog.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Delegate Sub PrintAbortedEventHandler( _
ByVal sender As Object, _
ByVal e As EventArgs _
) |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As New PrintAbortedEventHandler(AddressOf HandlerMethod)
|
| C# | |
|---|
public delegate void PrintAbortedEventHandler(
object sender,
EventArgs e
) |
Parameters
- sender
- Source of the event.
- e
- An EventArgs value that contains the event data.
See Also