ExportEventHandler Delegate
Represents the method that will handle the Export event.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in microsoft.reportviewer.winforms.dll)
Syntax
'Declaration
Public Delegate Sub ExportEventHandler ( _
sender As Object, _
e As ReportExportEventArgs _
)
'Usage
Dim instance As New ExportEventHandler(AddressOf HandlerMethod)
public delegate void ExportEventHandler (
Object sender,
ReportExportEventArgs e
)
public delegate void ExportEventHandler (
Object^ sender,
ReportExportEventArgs^ e
)
/** @delegate */
public delegate void ExportEventHandler (
Object sender,
ReportExportEventArgs e
)
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- sender
The object firing the event.
- e
A ReportExportEventArgs class containing the arguments for the event.
Remarks
For more information about handling events, see Consuming Events.