Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


FindItem(int, TreeViewItem)

Finds a TreeViewItem by an ID.
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 EntityId data, you should instead opt to upgrade your TreeViews to use TreeView\<EntityId\> to get the proper typing.
protected TreeViewItem FindItem(int id, TreeViewItem searchFromThisItem)

Parameters

id

Find the TreeViewItem with this ID.

searchFromThisItem

Sets the search to start from an item. Use 'rootItem' to search the entire tree.

Returns

Type

Description

TreeViewItemThis search method returns the TreeViewItem found and returns null if not found.

Remarks

Set the searchFromThisItem parameter to 'rootItem' to search the entire tree.