Represents the method that will handle the
PageNavigation event of a
ReportViewer.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in microsoft.reportviewer.winforms.dll)

Syntax
Visual Basic (Declaration)
Public Delegate Sub PageNavigationEventHandler ( _
sender As Object, _
e As PageNavigationEventArgs _
)
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

See Also