BackEventHandler Delegate

Represents the method that will handle the Back event of a ReportViewer.

Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in microsoft.reportviewer.winforms.dll)

Syntax

'Declaration
Public Delegate Sub BackEventHandler ( _
    sender As Object, _
    e As BackEventArgs _
)
'Usage
Dim instance As New BackEventHandler(AddressOf HandlerMethod)
public delegate void BackEventHandler (
    Object sender,
    BackEventArgs e
)
public delegate void BackEventHandler (
    Object^ sender, 
    BackEventArgs^ e
)
/** @delegate */
public delegate void BackEventHandler (
    Object sender, 
    BackEventArgs e
)
JScript supports the use of delegates, but not the declaration of new ones.

Parameters

  • sender
    The object that raised the event.

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 Consuming Events.

See Also

Reference

Microsoft.Reporting.WinForms Namespace