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