Class TreeViewExpandEventArgs
The class that describes the event arguments of the OnItemChange event of the TreeView.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TreeViewExpandEventArgs : TreeViewEventArgsBase, IRenderEventArgs
Constructors
TreeViewExpandEventArgs(Object, Boolean)
Declaration
public TreeViewExpandEventArgs(object item, bool expanded)
Parameters
System.Object
item
|
System.Boolean
expanded
|
Properties
Expanded
Defines the expanded state value of the Item.
Declaration
public bool Expanded { get; protected set; }
Property Value
System.Boolean
|
ShouldRender
Defines whether the component should re-render. Use this option when you want to re-render the whole treeview. By default, the expand operation renders only the respective node.
Declaration
public bool ShouldRender { get; set; }
Property Value
System.Boolean
|