Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


TreeViewState<TIdentifier>

The TreeViewState contains serializable state information for the TreeView.
Read time 1 minuteLast updated 11 days ago

Definition

public class TreeViewState<TIdentifier> where TIdentifier : unmanaged, IEquatable<TIdentifier>

Remarks

This is primarily state that the user could have changed by interacting with the TreeView, for example the selection state, expanded state, navigation state and scroll state.
The TreeViewState is the only state that should be serialized/deserialized in the TreeView. The TreeView itself is not serializable and should be reconstructed from the tree data it is representing.
All the state contained in this class is updated by the TreeView itself. Access to this state can also be done through the TreeView API.

Fields

Value

Description

scrollPosThe current scroll values of the TreeView's scroll view.

Properties

Property

Description

expandedIDsThis is the list of currently expanded TreeViewItem IDs.
lastClickedIDThe ID for the TreeViewItem that currently is being used for multi selection and key navigation.
searchStringSearch string state that can be used in the TreeView to filter the tree data when creating the TreeViewItems.
selectedIDsSelected TreeViewItem IDs. Use of the SetSelection and IsSelected API will access this state.