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