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.WebForms
Assembly: Microsoft.ReportViewer.WebForms (in microsoft.reportviewer.webforms.dll)
Syntax
'Declaration
Public Delegate Sub SearchEventHandler ( _
sender As Object, _
e As SearchEventArgs _
)
'Usage
Dim instance As New SearchEventHandler(AddressOf HandlerMethod)
public delegate void SearchEventHandler (
Object sender,
SearchEventArgs e
)
public delegate void SearchEventHandler (
Object^ sender,
SearchEventArgs^ e
)
/** @delegate */
public delegate void SearchEventHandler (
Object sender,
SearchEventArgs e
)
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- sender
The object that raised the event.
- e
A ReportErrorEventArgs object that contains information about the event.
Remarks
For more information about handling events, see Consuming Events.