Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


AddExpandedRows(TreeViewItem, IList<TreeViewItem>)

Adds the expanded rows of the full tree to the input list. Only use this method if a full tree was built in BuildRoot.
Read time 1 minuteLast updated 8 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 void AddExpandedRows(TreeViewItem root, IList<TreeViewItem> rows)

Parameters

Root of the TreeView.

Rows that will be refilled using the expanded state of TreeView.

Remarks

Note that the rows list will not be cleared before adding items.
Additional Resources: TreeView.BuildRoot, TreeView.BuildRows.