Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


FindItem(TIdentifier, TreeViewItem<TIdentifier>)

Finds a TreeViewItem by an ID.
Read time 1 minuteLast updated 10 days ago

Definition

FindItem(T, TreeViewItem<T>)

protected TreeViewItem<TIdentifier> FindItem(TIdentifier id, TreeViewItem<TIdentifier> searchFromThisItem)

Parameters

id

T
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

TreeViewItem<T>This search method returns the TreeViewItem found and returns null if not found.

Remarks

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