ReportViewer.Back Event

Occurs when a user navigates from a drillthrough report back to the parent report.

Namespace: Microsoft.Reporting.WebForms
Assembly: Microsoft.ReportViewer.WebForms (in microsoft.reportviewer.webforms.dll)

Syntax

'Declaration
Public Event Back As BackEventHandler
'Usage
Dim instance As ReportViewer
Dim handler As BackEventHandler

AddHandler instance.Back, handler
public event BackEventHandler Back
public:
event BackEventHandler^ Back {
    void add (BackEventHandler^ value);
    void remove (BackEventHandler^ value);
}
/** @event */
public void add_Back (BackEventHandler value)

/** @event */
public void remove_Back (BackEventHandler value)
JScript supports the use of events, but not the declaration of new ones.

Remarks

This event occurs when the user moves from a drillthrough report back to the parent report. Information about this event is passed in a BackEventArgs object to the BackEventHandler delegate, which handles the event.

For more information about handling events, see Consuming Events.

See Also

Reference

ReportViewer Class
ReportViewer Members
Microsoft.Reporting.WebForms Namespace