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