Class TreeListCellRenderEventArgs
The class that describes the event arguments to the treelist cell render event.
Inheritance
System.Object
TreeListCellRenderEventArgs
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TreeListCellRenderEventArgs : EventArgs
Constructors
TreeListCellRenderEventArgs(Object, Object)
Declaration
public TreeListCellRenderEventArgs(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
|