Class
TreeListState<TItem>

The class that contains the state of the Telerik TreeList Component.

Definition

Constructors

TreeListState()

Declaration

cs-api-definition
public TreeListState()

Properties

ColumnStates

Defines the column state of the configured columns in the Grid. Used for changing the indices of the columns and their width.

Declaration

cs-api-definition
public ICollection<TreeListColumnState> ColumnStates { get; set; }

Property Value

ICollection<TreeListColumnState>

ExpandedItems

Defines the expanded items in the TreeList.

Declaration

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

Property Value

ICollection<TItem>

ParentItem

Defines the parent of a newly added item. Used when inserting child items.

Declaration

cs-api-definition
public TItem ParentItem { get; set; }

Property Value

TItem