Version: 5.6

TreeView.GetDescendantsThatHaveChildren

Cambiar al Manual
protected IList<int> GetDescendantsThatHaveChildren (int id);

Parámetros

id TreeViewItem ID.

Valor de retorno

IList<int> Descendants that have children.

Descripción

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.