Delegate GridViewCellCancelEventHandler
Represents the method that will handle the cell related events of a RadGridView.
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public delegate void GridViewCellCancelEventHandler(object sender, GridViewCellCancelEventArgs e);
Parameters
System.Object
sender
The event sender, typicaly this is RadGridView |
GridViewCellCancelEventArgs
e
Instance of GridViewCellCancelEventArgs containing the data related with this event |
Constructors
GridViewCellCancelEventHandler(Object, IntPtr)
Declaration
public GridViewCellCancelEventHandler(object object, IntPtr method)
Parameters
System.Object
object
|
System.IntPtr
method
|
Methods
BeginInvoke(Object, GridViewCellCancelEventArgs, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(object sender, GridViewCellCancelEventArgs e, AsyncCallback callback, object object)
Parameters
System.Object
sender
|
GridViewCellCancelEventArgs
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, GridViewCellCancelEventArgs)
Declaration
public virtual void Invoke(object sender, GridViewCellCancelEventArgs e)
Parameters
System.Object
sender
|
GridViewCellCancelEventArgs
e
|