Event arguments for the OnExpand event. Provides information about the node being expanded or collapsed.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class DropDownTreeExpandEventArgs : EventArgs
Inheritance: objectEventArgsDropDownTreeExpandEventArgs
Inherited Members
Constructors
Properties
Indicates whether the node is now expanded (true) or collapsed (false).
C#
public bool Expanded { get; }
The data item of the node being expanded or collapsed. Use to load child items on demand or update application state.
C#
public object Item { get; }
Defines whether the component should re-render. Use this option when you want to re-render the tree after data changes.
C#
public bool ShouldRender { get; set; }