AddItem<T>(TreeViewItemData<T>, int, int, bool)
Adds an item to the existing tree.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Method
- Namespace: UnityEngine.UIElements
- Assembly: UnityEngine.UIElementsModule
public void AddItem<T>(TreeViewItemData<T> item, int parentId = -1, int childIndex = -1, bool rebuildTree = true)
Parameters
Item to add.
The parent id for the item.
The child index in the parent's children list.
Whether we should call RebuildTree and RefreshItems or not. Set to false when doing multiple additions to save a few rebuilds.