Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


TreeViewItem

TreeViewItem constructor.
Read time 2 minutesLast updated 9 days ago

Definition

TreeViewItem()

TreeViewItem constructor.
Warning
Removed. TreeViewItem is now deprecated. You can likely now use TreeViewItem\<int\> instead and not think more about it. But if you were using that identifier to store EntityId data, you should instead opt to upgrade your TreeViews to use TreeViewItem\<EntityId\> to get the proper typing.
public TreeViewItem()

TreeViewItem(int)

TreeViewItem constructor.
Warning
Removed. TreeViewItem is now deprecated. You can likely now use TreeViewItem\<int\> instead and not think more about it. But if you were using that identifier to store EntityId data, you should instead opt to upgrade your TreeViews to use TreeViewItem\<EntityId\> to get the proper typing.
public TreeViewItem(int id)

Parameters

id

Unique ID to identify this TreeViewItem with among all TreeViewItems of the TreeView. See Also id.

TreeViewItem(int, int)

TreeViewItem constructor.
Warning
Removed. TreeViewItem is now deprecated. You can likely now use TreeViewItem\<int\> instead and not think more about it. But if you were using that identifier to store EntityId data, you should instead opt to upgrade your TreeViews to use TreeViewItem\<EntityId\> to get the proper typing.
public TreeViewItem(int id, int depth)

Parameters

id

Unique ID to identify this TreeViewItem with among all TreeViewItems of the TreeView. See Also id.

depth

Depth of this TreeViewItem. See Also depth.

TreeViewItem(int, int, string)

TreeViewItem constructor.
Warning
Removed. TreeViewItem is now deprecated. You can likely now use TreeViewItem\<int\> instead and not think more about it. But if you were using that identifier to store EntityId data, you should instead opt to upgrade your TreeViews to use TreeViewItem\<EntityId\> to get the proper typing.
public TreeViewItem(int id, int depth, string displayName)

Parameters

id

Unique ID to identify this TreeViewItem with among all TreeViewItems of the TreeView. See Also id.

depth

Depth of this TreeViewItem. See Also depth.

displayName

Rendered name of this TreeViewItem. See Also displayName.