SearchEventHandler Delegate

 

Represents the method that will handle a Search event.

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

Syntax

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

Parameters

Remarks

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

See Also

Microsoft.Reporting.WinForms Namespace

Return to top