Delegate GridViewCustomSortingEventHandler
Represents the method that will handle the CustomSorting event of a RadGridView.
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public delegate void GridViewCustomSortingEventHandler(object sender, GridViewCustomSortingEventArgs e);
Parameters
System.Object
sender
The event sender, typicaly this is RadGridView |
GridViewCustomSortingEventArgs
e
Instance of GridViewCustomSortingEventArgs containing the row related with this event |
Constructors
GridViewCustomSortingEventHandler(Object, IntPtr)
Declaration
public GridViewCustomSortingEventHandler(object object, IntPtr method)
Parameters
System.Object
object
|
System.IntPtr
method
|
Methods
BeginInvoke(Object, GridViewCustomSortingEventArgs, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(object sender, GridViewCustomSortingEventArgs e, AsyncCallback callback, object object)
Parameters
System.Object
sender
|
GridViewCustomSortingEventArgs
e
|
System.AsyncCallback
callback
|
System.Object
object
|
Returns
System.IAsyncResult
|
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
System.IAsyncResult
result
|
Invoke(Object, GridViewCustomSortingEventArgs)
Declaration
public virtual void Invoke(object sender, GridViewCustomSortingEventArgs e)
Parameters
System.Object
sender
|
GridViewCustomSortingEventArgs
e
|