Class TreeViewEventArgsBase
Base class for TreeView event arguments.
Inheritance
System.Object
TreeViewEventArgsBase
Namespace: Telerik.Blazor.Components.TreeView
Assembly: Telerik.Blazor.dll
Syntax
public abstract class TreeViewEventArgsBase : Object
Constructors
TreeViewEventArgsBase(Object)
Declaration
public TreeViewEventArgsBase(object item)
Parameters
System.Object
item
|
Properties
Item
Defines the item that has been affected. You can cast it to the model type to which you bind the TreeView.
Declaration
public object Item { get; protected set; }
Property Value
System.Object
|