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