BookmarkNavigationEventHandler Delegate

 

Represents the method that will handle the T:Microsoft.Reporting.WinForms.BookmarkNavigation event of a ReportViewer.

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

Syntax

public delegate void BookmarkNavigationEventHandler(
    object sender,
    BookmarkNavigationEventArgs e
)
public delegate void BookmarkNavigationEventHandler(
    Object^ sender,
    BookmarkNavigationEventArgs^ e
)
type BookmarkNavigationEventHandler = 
    delegate of 
        sender:Object *
        e:BookmarkNavigationEventArgs -> unit
Public Delegate Sub BookmarkNavigationEventHandler (
    sender As Object,
    e As BookmarkNavigationEventArgs
)

Parameters

Remarks

For more information about handling events, see NIB: Consuming Events.

See Also

Microsoft.Reporting.WinForms Namespace

Return to top