New to Telerik UI for BlazorStart a free 30-day trial

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.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Type Parameters:

TItem

Syntax:

C#
public class TreeListStateEventArgs<TItem> : EventArgs

Inheritance: objectEventArgsTreeListStateEventArgs<TItem>

Inherited Members EventArgs.Empty

Constructors

C#
public TreeListStateEventArgs()
C#
public TreeListStateEventArgs(string property)
Parameters:propertystring

Properties

Defines the changed property in the TreeListState.

C#
public string PropertyName { get; set; }

Defines the current state of the TreeList. Use the OnStateInit event to set default TreeList state.

C#
public TreeListState<TItem> TreeListState { get; set; }