Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


SetExpanded

Set a single TreeViewItem to be expanded or collapsed.
Read time 1 minuteLast updated 11 days ago

Definition

SetExpanded(T, bool)

Set a single TreeViewItem to be expanded or collapsed.
public bool SetExpanded(TIdentifier id, bool expanded)

Parameters

id

T
TreeViewItem ID.

expanded

True expands item. False collapses item.

Returns

Type

Description

boolTrue if item changed expanded state, false if item already had the
expanded
state.

SetExpanded(IList<T>)

Set the current expanded TreeViewItems of the TreeView. This will overwrite the previous expanded state.
public void SetExpanded(IList<TIdentifier> ids)

Parameters

List of item IDs that should be expanded.