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 RenderingComplete event of a ReportViewer.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in microsoft.reportviewer.winforms.dll)
Syntax
'Declaration
Public Delegate Sub RenderingCompleteEventHandler ( _
sender As Object, _
e As RenderingCompleteEventArgs _
)
'Usage
Dim instance As New RenderingCompleteEventHandler(AddressOf HandlerMethod)
public delegate void RenderingCompleteEventHandler (
Object sender,
RenderingCompleteEventArgs e
)
public delegate void RenderingCompleteEventHandler (
Object^ sender,
RenderingCompleteEventArgs^ e
)
/** @delegate */
public delegate void RenderingCompleteEventHandler (
Object sender,
RenderingCompleteEventArgs e
)
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- sender
The object that raised the event.
- e
A RenderingCompleteEventArgs object that contains information about the event.
Remarks
For more information about handling events, see Consuming Events.