Delegado BackEventHandler
Represents the method that will handle the Back event of a ReportViewer.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (em Microsoft.ReportViewer.WinForms.dll)
Sintaxe
'Declaração
Public Delegate Sub BackEventHandler ( _
sender As Object, _
e As BackEventArgs _
)
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
JScript não oferece suporte a delegados.
Parâmetros
- sender
Tipo: Object
The object that raised the event.
- e
Tipo: Microsoft.Reporting.WinForms.BackEventArgs
A BackEventArgs object that contains the event arguments.
Comentários
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 Consumindo eventos.