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

Syntax
Visual Basic (Declaration)
Public Delegate Sub DocumentMapNavigationEventHandler ( _
sender As Object, _
e As DocumentMapNavigationEventArgs _
)
Dim instance As New DocumentMapNavigationEventHandler(AddressOf HandlerMethod)
public delegate void DocumentMapNavigationEventHandler (
Object sender,
DocumentMapNavigationEventArgs e
)
public delegate void DocumentMapNavigationEventHandler (
Object^ sender,
DocumentMapNavigationEventArgs^ e
)
/** @delegate */
public delegate void DocumentMapNavigationEventHandler (
Object sender,
DocumentMapNavigationEventArgs e
)
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- sender
The object raising the event.
- e
A DocumentMapNavigationEventArgs object containing the event arguments.

Remarks

See Also