Share via


BackEventArgs Class

 

Provides data for the Back event.

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

Inheritance Hierarchy

System.Object
  System.EventArgs
    System.ComponentModel.CancelEventArgs
      Microsoft.Reporting.WinForms.BackEventArgs

Syntax

[ComVisibleAttribute(false)]
public sealed class BackEventArgs : CancelEventArgs
[ComVisibleAttribute(false)]
public ref class BackEventArgs sealed : CancelEventArgs
[<Sealed>]
[<ComVisibleAttribute(false)>]
type BackEventArgs = 
    class
        inherit CancelEventArgs
    end
<ComVisibleAttribute(False)>
Public NotInheritable Class BackEventArgs
    Inherits CancelEventArgs

Constructors

Name Description
System_CAPS_pubmethod BackEventArgs(Report)

Constructs a new BackEventArgs object.

Properties

Name Description
System_CAPS_pubproperty Cancel

(Inherited from CancelEventArgs.)

System_CAPS_pubproperty ParentReport

Gets the parent report of the drillthrough report.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Remarks

This is passed to the BackEventHandler delegate when a Back event occurs.

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 parent report is passed as an argument to the delegate that handles the Back event.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.Reporting.WinForms Namespace

Return to top