BackEventHandler Delegate

 

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

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