Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


SetupParentsAndChildrenFromDepths(TreeViewItem, IList<TreeViewItem>)

Utility method for initializing all the parent and children properties of the rows using the order and the depths values that have been set.
Read time 1 minuteLast updated 12 days ago

Definition

Warning
Removed. TreeView is now deprecated. You can likely now use TreeView\<int\> instead and not think more about it. But if you were using that identifier to store InstanceID data, you should instead opt to upgrade your TreeViews to use TreeView\<InstanceID\> to get the proper typing.
protected static void SetupParentsAndChildrenFromDepths(TreeViewItem root, IList<TreeViewItem> rows)

Parameters

The hidden root item.

TreeViewItems where only the depth property have been set.

Remarks

Some tree data models are based on order and depth information only. This method can be called after creating all the rows to initalize the ‘parent’ and ‘children’ properties for each TreeViewItem in ‘rows’ based on the depth information for each item. This method assumes that the data presented in
rows
is in the order it should appear from top to bottom in the TreeView.