Zdarzenie ReportViewer.StatusChanged
Occurs whenever the user interface state of the ReportViewer control changes.
Przestrzeń nazw: Microsoft.Reporting.WinForms
Zestaw: Microsoft.ReportViewer.WinForms (w Microsoft.ReportViewer.WinForms.dll)
Składnia
'Deklaracja
Public Event StatusChanged As EventHandler(Of EventArgs)
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>
Język JScript nie obsługuje zdarzeń.
Uwagi
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 Używające zdarzeń.