Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents the method that will handle a ReportError event.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)
Syntax
public delegate void ReportErrorEventHandler(
object sender,
ReportErrorEventArgs e
)
public delegate void ReportErrorEventHandler(
Object^ sender,
ReportErrorEventArgs^ e
)
type ReportErrorEventHandler =
delegate of
sender:Object *
e:ReportErrorEventArgs -> unit
Public Delegate Sub ReportErrorEventHandler (
sender As Object,
e As ReportErrorEventArgs
)
Parameters
sender
Type: System.ObjectThe object that raised the event.
e
Type: Microsoft.Reporting.WinForms.ReportErrorEventArgsA ReportErrorEventArgs object that contains information about the event.
Remarks
For more information about handling events, see NIB: Consuming Events.
See Also
Microsoft.Reporting.WinForms Namespace
Return to top