Class DataBoundEventArgs<T>
Specifies class for DataBound event arguments.
Inheritance
System.Object
DataBoundEventArgs<T>
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class DataBoundEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T |
Constructors
DataBoundEventArgs()
Declaration
public DataBoundEventArgs()
Properties
Data
Return the updated TreeView data. The data source will be updated after performing some operation like drag and drop, node editing, adding and removing node. If you want to get updated data source after performing operation like selecting/unSelecting, checking/unChecking, expanding/collapsing the node, then you can use getTreeData method.
Declaration
public List<T> Data { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T> |
Name
Return the Event name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |