ReportViewer.PageNavigation Event
Occurs when a user changes pages in a report.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)
Syntax
public event PageNavigationEventHandler PageNavigation
public:
event PageNavigationEventHandler^ PageNavigation {
void add(PageNavigationEventHandler^ value);
void remove(PageNavigationEventHandler^ value);
}
member PageNavigation : IEvent<PageNavigationEventHandler,
PageNavigationEventArgs>
Public Event PageNavigation As PageNavigationEventHandler
Remarks
This event occurs when a user changes pages in a report. Information about this event is passed in a PageNavigationEventArgs object to the PageNavigationEventHandler 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