SortEventHandler Delegate
Represents the method that will handle the Sort event of a ReportViewer.
Namespace: Microsoft.Reporting.WebForms
Assembly: Microsoft.ReportViewer.WebForms (in microsoft.reportviewer.webforms.dll)
Syntax
'Declaration
Public Delegate Sub SortEventHandler ( _
sender As Object, _
e As SortEventArgs _
)
'Usage
Dim instance As New SortEventHandler(AddressOf HandlerMethod)
public delegate void SortEventHandler (
Object sender,
SortEventArgs e
)
public delegate void SortEventHandler (
Object^ sender,
SortEventArgs^ e
)
/** @delegate */
public delegate void SortEventHandler (
Object sender,
SortEventArgs e
)
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- sender
The object raising the event.
- e
A SortEventArgs object containing information about the event.
Remarks
For more information about handling events, see Consuming Events.