Version: 2022.3
言語: 日本語

TreeView.SetupParentsAndChildrenFromDepths

マニュアルに切り替える
protected static void SetupParentsAndChildrenFromDepths (IMGUI.Controls.TreeViewItem root, IList<TreeViewItem> rows);

パラメーター

root The hidden root item.
rows TreeViewItems where only the depth property have been set.

説明

Utility method for initializing all the parent and children properties of the rows using the order and the depths values that have been set.

Some tree data models are based on order and depth information only. This method can be called after creating all the rows to initalize the ‘parent’ and ‘children’ properties for each TreeViewItem in ‘rows’ based on the depth information for each item. This method assumes that the data presented in `rows` is in the order it should appear from top to bottom in the TreeView.

See Also: SetupDepthsFromParentsAndChildren, BuildRoot.