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 the E:Microsoft.ReportingServices.WinForms.ReportViewer.Export event.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)
Syntax
public delegate void ExportEventHandler(
object sender,
ReportExportEventArgs e
)
public delegate void ExportEventHandler(
Object^ sender,
ReportExportEventArgs^ e
)
type ExportEventHandler =
delegate of
sender:Object *
e:ReportExportEventArgs -> unit
Public Delegate Sub ExportEventHandler (
sender As Object,
e As ReportExportEventArgs
)
Parameters
sender
Type: System.ObjectThe object firing the event.
e
Type: Microsoft.Reporting.WinForms.ReportExportEventArgsA ReportExportEventArgs class containing the arguments for the event.
Remarks
For more information about handling events, see NIB: Consuming Events.
See Also
Microsoft.Reporting.WinForms Namespace
Return to top