Class TableCellRenderEventArgs
The class that describes the event arguments for the cell render event.
Inheritance
System.Object
TableCellRenderEventArgs
Namespace: Telerik.Blazor.Components.Common.Grid
Assembly: Telerik.Blazor.dll
Syntax
public class TableCellRenderEventArgs : EventArgs
Constructors
TableCellRenderEventArgs()
Declaration
public TableCellRenderEventArgs()
TableCellRenderEventArgs(Object, Object)
Declaration
public TableCellRenderEventArgs(object item, object value)
Parameters
System.Object
item
|
System.Object
value
|
Properties
Class
A custom class that can be set to the cell.
Declaration
public string Class { get; set; }
Property Value
System.String
|
Item
The item the cell is bound to.
Declaration
public object Item { get; set; }
Property Value
System.Object
|
Value
The current value of the cell.
Declaration
public object Value { get; set; }
Property Value
System.Object
|