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.
Occurs whenever the user interface state of the ReportViewer control changes.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)
Syntax
public event EventHandler<EventArgs> StatusChanged
public:
event EventHandler<EventArgs^>^ StatusChanged {
void add(EventHandler<EventArgs^>^ value);
void remove(EventHandler<EventArgs^>^ value);
}
member StatusChanged : IEvent<EventHandler<EventArgs>,
EventArgs>
Public Event StatusChanged As EventHandler(Of EventArgs)
Remarks
This event can occur in response to method calls as well as background operations in the ReportViewer control, such as rendering a report page. Information about this event is passed in a EventArgs object to the EventHandler delegate, which handles the event.
It is useful to subscribe to this event when implementing your own toolbar or replacing portions of the built-in user interface.
For more information about handling events, see NIB: Consuming Events.
See Also
ReportViewer Class
Microsoft.Reporting.WinForms Namespace
Return to top