Version: 2018.2

TreeView.GetDescendantsThatHaveChildren

マニュアルに切り替える
protected IList<int> GetDescendantsThatHaveChildren (int id);

パラメーター

idTreeViewItem ID.

戻り値

IList<int> Descendants that have children.

説明

Returns all descendants for the item with ID id that have children.

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.

See Also: GetAncestors.