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