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.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Type Parameters:

TItem

Syntax:

cs-api-definition
public class TreeListStateEventArgs<TItem> : EventArgs

Inheritance: objectEventArgsTreeListStateEventArgs<TItem>

Inherited Members EventArgs.Empty

Constructors

TreeListStateEventArgs()

Declaration

cs-api-definition
public TreeListStateEventArgs()

TreeListStateEventArgs(string)

Declaration

cs-api-definition
public TreeListStateEventArgs(string property)

Parameters

property

string

Properties

PropertyName

Defines the changed property in the TreeListState.

Declaration

cs-api-definition
public string PropertyName { get; set; }

Property Value

string

TreeListState

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

Declaration

cs-api-definition
public TreeListState<TItem> TreeListState { get; set; }

Property Value

TreeListState<TItem>