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.
Represents the method that will handle the T:Microsoft.Reporting.WinForms.Back event of a ReportViewer.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)
Syntax
public delegate void BackEventHandler(
object sender,
BackEventArgs e
)
public delegate void BackEventHandler(
Object^ sender,
BackEventArgs^ e
)
type BackEventHandler =
delegate of
sender:Object *
e:BackEventArgs -> unit
Public Delegate Sub BackEventHandler (
sender As Object,
e As BackEventArgs
)
Parameters
sender
Type: System.ObjectThe object that raised the event.
e
Type: Microsoft.Reporting.WinForms.BackEventArgsA BackEventArgs object that contains the event arguments.
Remarks
A Back event occurs when the user has navigated to a drillthrough report and clicks the Back button to return to the parent report. The BackEventArgs object contains the parent report.
For more information about handling events, see NIB: Consuming Events.
See Also
Microsoft.Reporting.WinForms Namespace
Return to top