Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GetDescendantsThatHaveChildren(TIdentifier)

Returns all descendants for the item with ID id that have children.
Read time 1 minuteLast updated 11 days ago

Definition

GetDescendantsThatHaveChildren(T)

protected virtual IList<TIdentifier> GetDescendantsThatHaveChildren(TIdentifier id)

Parameters

id

T
TreeViewItem ID.

Returns

Type

Description

IList<T>Descendants that have children.

Remarks

It is used for expanding entire sub-trees. It is called automatically from some TreeView methods. If the full item tree has not been built in BuildRoot(), then override this method and use your back-end data to find the correct descendants for the given item.
Default behavior: The item with ID id is found by searching from the rootItem through all its descendants. Once found, all its descendants that have children are collected. Assumes the full tree has been built.
Additional Resources: TreeView<TIdentifier>.GetAncestors.