Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
sender
Type: System.ObjectThe object that raised the event.
e
Type: Microsoft.Reporting.WinForms.SearchEventArgsA ReportErrorEventArgs object that contains information about the event.
Remarks
For more information about handling events, see NIB: Consuming Events.
See Also
Microsoft.Reporting.WinForms Namespace
Return to top