Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


TreeViewItem<TIdentifier>

The TreeViewItem is used to build the tree representation of a tree data structure.
Read time 1 minuteLast updated 11 days ago

Definition

public class TreeViewItem<TIdentifier> : IComparable<TreeViewItem<TIdentifier>>

Remarks

The TreeViewItem can be derived from to add custom data.
Additional Resources: TreeView<TIdentifier>.

Constructors

Constructor

Description

TreeViewItem`1()TreeViewItem constructor.
TreeViewItem`1(`0)TreeViewItem constructor.
TreeViewItem`1(`0,System.Int32)TreeViewItem constructor.
TreeViewItem`1(`0,System.Int32,System.String)TreeViewItem constructor.

Properties

Property

Description

childrenThe list of child items of this TreeViewItem.
depthThe depth refers to how many ancestors this item has, and corresponds to the number of horizontal ‘indents’ this item has.
displayNameName shown for this item when rendered.
hasChildrenReturns true if TreeViewItem<TIdentifier>.children has any items.
iconIf set, this icon will be rendered to the left of the displayName. The icon is rendered at 16x16 points by default.
idUnique ID for an item.
parentThe parent of this TreeViewItem. If it is null then it is considered the root of the TreeViewItem tree.

Methods

Method

Description

AddChildHelper method that adds the
child
TreeViewItem to the TreeViewItem<TIdentifier>.children list and sets the parent property on the
child
.