Class TreeListStateEventArgs<TItem>
The class that describes the event arguments of the OnStateInit and OnStateChanged events of the TreeList. Used to track changes made by user interaction such as sorting, filtering, column resizing, etc.
Inheritance
System.Object
TreeListStateEventArgs<TItem>
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TreeListStateEventArgs<TItem> : EventArgs
Type Parameters
TItem
|
Constructors
TreeListStateEventArgs()
Declaration
public TreeListStateEventArgs()
TreeListStateEventArgs(String)
Declaration
public TreeListStateEventArgs(string property)
Parameters
System.String
property
|
Properties
PropertyName
Defines the changed property in the TreeListState.
Declaration
public string PropertyName { get; set; }
Property Value
System.String
|
TreeListState
Defines the current state of the TreeList. Use the OnStateInit event to set default TreeList state.
Declaration
public TreeListState<TItem> TreeListState { get; set; }
Property Value
TreeListState<TItem>
|