ReportViewer.BookmarkNavigation Event

 

Occurs when the user navigates to a bookmark in a report.

Namespace:   Microsoft.Reporting.WinForms
Assembly:  Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)

Syntax

public event BookmarkNavigationEventHandler BookmarkNavigation
public:
event BookmarkNavigationEventHandler^ BookmarkNavigation {
    void add(BookmarkNavigationEventHandler^ value);
    void remove(BookmarkNavigationEventHandler^ value);
}
member BookmarkNavigation : IEvent<BookmarkNavigationEventHandler,
    BookmarkNavigationEventArgs>
Public Event BookmarkNavigation As BookmarkNavigationEventHandler

Remarks

This event occurs when the user navigates to a bookmark in the report. Information about this event is passed in a BookmarkNavigationEventArgs object to the BookmarkNavigationEventHandler delegate, which handles the event.

For more information about handling events, see NIB: Consuming Events.

See Also

ReportViewer Class
Microsoft.Reporting.WinForms Namespace

Return to top