# TreeView

> The TreeView is an IMGUI control that lets you create tree views, list views and multi-column tables for Editor tools.

## Definition

* **Type:** Class
* **Namespace:** [UnityEditor.IMGUI.Controls](/engine/6000.5/script-reference/unityeditor/imgui/controls.md)
* **Assembly:** UnityEditor.CoreModule
* **Inherits from:** [TreeViewInternal](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeviewinternal.md)

> **Warning:**
>
> **Removed.** TreeView is now deprecated. You can likely now use TreeView\\\<int\\> instead and not think more about it. But if you were using that identifier to store InstanceID data, you should instead opt to upgrade your TreeViews to use TreeView\\\<InstanceID\\> to get the proper typing.

```csharp
public abstract class TreeView : TreeViewInternal
```

## Remarks

It is customizable with regards to row content rendering, dragging logic, selection logic, searching, sorting and renaming of items. To ensure consistency between TreeViews the following features are not customizable: Foldout arrow rendering, selection rendering, drag markers rendering.

A good place to start is [TreeView.BuildRoot](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/buildroot.md).

## Constructors

| Constructor                                                                                                                                                                                                                | Description                                                                                                               |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
| [TreeView(UnityEditor.IMGUI.Controls.TreeViewState)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/ctor.md#treeview\(treeviewstate\))                                                                | The TreeView is always constructed with a state object and optionally a multi-column header object if a header is needed. |
| [TreeView(UnityEditor.IMGUI.Controls.TreeViewState,UnityEditor.IMGUI.Controls.MultiColumnHeader)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/ctor.md#treeview\(treeviewstate-multicolumnheader\)) | The TreeView is always constructed with a state object and optionally a multi-column header object if a header is needed. |

## Properties

| Property                                                                                                                  | Description                                                                                                                                                                                      |
| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| [getNewSelectionOverride](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/getnewselectionoverride.md) | Register a callback to this field to override how the TreeView handles selection changes in response to keys and mouse clicks.                                                                   |
| [hoveredItem](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/hovereditem.md)                         | Use this property to detect which TreeViewItem the mouse cursor is currently hovering over in the TreeView. This property is only valid if the enableItemHovering property has been set to true. |
| [rootItem](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/rootitem.md)                               | The hidden root item of the TreeView (it is never rendered).                                                                                                                                     |
| [state](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/state.md)                                     | The state of the TreeView (expanded state, selection, scroll etc.)                                                                                                                               |

## Methods

| Method                                                                                                                  | Description                                                                                                                                                                                                          |
| ----------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [AddExpandedRows](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/addexpandedrows.md)               | Adds the expanded rows of the full tree to the input list. Only use this method if a full tree was built in BuildRoot.                                                                                               |
| [BeginRename](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/beginrename.md)                       | Shows the rename overlay for a TreeViewItem.                                                                                                                                                                         |
| [BuildRoot](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/buildroot.md)                           | Abstract method that is required to be implemented. By default this method should create the full tree of TreeViewItems and return the root.                                                                         |
| [BuildRows](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/buildrows.md)                           | Override this method to take control of how the rows are generated.                                                                                                                                                  |
| [CanBeParent](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/canbeparent.md)                       | Override this method to control which items are allowed to be parents.                                                                                                                                               |
| [CanChangeExpandedState](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/canchangeexpandedstate.md) | Override this method to control whether an item can be expanded or collapsed by key or mouse.                                                                                                                        |
| [CanMultiSelect](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/canmultiselect.md)                 | Override this method to control whether the item can be part of a multiselection.                                                                                                                                    |
| [CanRename](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/canrename.md)                           | Override this method to control whether the item can be renamed using a keyboard shortcut or when clicking an already selected item.                                                                                 |
| [CanStartDrag](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/canstartdrag.md)                     | This function is called whenever a TreeViewItem is clicked and dragged. It returns false by default.                                                                                                                 |
| [DoesItemMatchSearch](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/doesitemmatchsearch.md)       | Override this function to extend or change the search behavior.                                                                                                                                                      |
| [FindItem](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/finditem.md)                             | Finds a TreeViewItem by an ID.                                                                                                                                                                                       |
| [FindRowOfItem](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/findrowofitem.md)                   | Returns the row of the given TreeViewItem.                                                                                                                                                                           |
| [FindRows](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/findrows.md)                             | Useful for converting from TreeViewItem IDs to TreeViewItems using the current rows.                                                                                                                                 |
| [GetContentIndent](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/getcontentindent.md)             | Returns the horizontal content offset for an item. This is where the content should begin (after the foldout arrow).                                                                                                 |
| [GetCustomRowHeight](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/getcustomrowheight.md)         | Override to control individual row heights.                                                                                                                                                                          |
| [GetFoldoutIndent](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/getfoldoutindent.md)             | Returns the horizontal foldout offset for an item. This is where the foldout arrow is rendered.                                                                                                                      |
| [GetRenameRect](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/getrenamerect.md)                   | Override this method if custom GUI handling are used in [TreeView.RowGUI](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/rowgui.md). This method for controls where the rename overlay appears. |
| [GetRows](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/getrows.md)                               | This is the list of TreeViewItems that have been built in [TreeView.BuildRows](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/buildrows.md).                                                    |
| [HandleDragAndDrop](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/handledraganddrop.md)           | Override this function to control the drag and drop behavior of the TreeView.                                                                                                                                        |
| [RowGUI](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/rowgui.md)                                 | Override this method to add custom GUI content for the rows in the TreeView.                                                                                                                                         |
| [SelectionClick](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/selectionclick.md)                 | Use this method in [TreeView.RowGUI](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/rowgui.md) to peform the logic of a mouse click.                                                            |

## Static Methods

| Method                                                                                                                                        | Description                                                                                                                                                                                                                                           |
| --------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [CreateChildListForCollapsedParent](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/createchildlistforcollapsedparent.md) | Creates a dummy TreeViewItem list. Useful when overriding [TreeView.BuildRows](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/buildrows.md) to prevent building a full tree of items.                                            |
| [IsChildListForACollapsedParent](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/ischildlistforacollapsedparent.md)       | Utility method for checking if the `childList` is identical to the one returned by the [TreeView.CreateChildListForCollapsedParent](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/createchildlistforcollapsedparent.md) method. |
| [SetupDepthsFromParentsAndChildren](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/setupdepthsfromparentsandchildren.md) | Utility method using the depth of the input TreeViewItem to set the correct depths for all its descendant TreeViewItems.                                                                                                                              |
| [SetupParentsAndChildrenFromDepths](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/setupparentsandchildrenfromdepths.md) | Utility method for initializing all the parent and children properties of the rows using the order and the depths values that have been set.                                                                                                          |

## Structs

| Struct                                                                                                               | Description                                                                                                                                                     |
| -------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [TreeView.CanStartDragArgs](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/canstartdragargs.md) | Method arguments for the [TreeView.CanStartDrag](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/canstartdrag.md) virtual method.           |
| [TreeView.DragAndDropArgs](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/draganddropargs.md)   | Method arguments for the [TreeView.HandleDragAndDrop](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/handledraganddrop.md) virtual method. |
| [TreeView.RowGUIArgs](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/rowguiargs.md)             | Method arguments for the virtual method [TreeView.RowGUI](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/rowgui.md).                       |

## Delegates

| Delegate                                                                                                                           | Description                                                                                              |
| ---------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
| [TreeView.GetNewSelectionFunction](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview/getnewselectionfunction.md) | A callback which determines how TreeView handles selection changes in response to keys and mouse clicks. |

## Inheritance

**Inherited Members:**

* [TreeView\<int>.BuildRows(TreeViewItem\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/buildrows.md)
* [TreeView\<int>.Reload()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/reload.md)
* [TreeView\<int>.Repaint()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/repaint.md)
* [TreeView\<int>.GetCellRectForTreeFoldouts(Rect)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/getcellrectfortreefoldouts.md)
* [TreeView\<int>.GetRowRect(int)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/getrowrect.md)
* [TreeView\<int>.FindItem(int, TreeViewItem\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/finditem.md)
* [TreeView\<int>.FindRowOfItem(TreeViewItem\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/findrowofitem.md)
* [TreeView\<int>.GetFirstAndLastVisibleRows(int, int)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/getfirstandlastvisiblerows.md)
* [TreeView\<int>.ExpandAll()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/expandall.md)
* [TreeView\<int>.CollapseAll()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/collapseall.md)
* [TreeView\<int>.SetExpandedRecursive(int, bool)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/setexpandedrecursive.md)
* [TreeView\<int>.SetExpanded(int, bool)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/setexpanded.md)
* [TreeView\<int>.SetExpanded(IList\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/setexpanded.md)
* [TreeView\<int>.GetExpanded()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/getexpanded.md)
* [TreeView\<int>.IsExpanded(int)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/isexpanded.md)
* [TreeView\<int>.GetSelection()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/getselection.md)
* [TreeView\<int>.SetSelection(IList\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/setselection.md)
* [TreeView\<int>.SetSelection(IList\<int>, TreeViewSelectionOptions)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/setselection.md)
* [TreeView\<int>.IsSelected(int)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/isselected.md)
* [TreeView\<int>.HasSelection()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/hasselection.md)
* [TreeView\<int>.HasFocus()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/hasfocus.md)
* [TreeView\<int>.SetFocus()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/setfocus.md)
* [TreeView\<int>.SetFocusAndEnsureSelectedItem()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/setfocusandensureselecteditem.md)
* [TreeView\<int>.SelectionClick(TreeViewItem\<int>, bool)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/selectionclick.md)
* [TreeView\<int>.BeginRename(TreeViewItem\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/beginrename.md)
* [TreeView\<int>.BeginRename(TreeViewItem\<int>, float)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/beginrename.md)
* [TreeView\<int>.EndRename()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/endrename.md)
* [TreeView\<int>.FrameItem(int)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/frameitem.md)
* [TreeView\<int>.OnGUI(Rect)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/ongui.md)
* [TreeView\<int>.SelectAllRows()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/selectallrows.md)
* [TreeView\<int>.GetFoldoutIndent(TreeViewItem\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/getfoldoutindent.md)
* [TreeView\<int>.GetContentIndent(TreeViewItem\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/getcontentindent.md)
* [TreeView\<int>.SortItemIDsInRowOrder(IList\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/sortitemidsinroworder.md)
* [TreeView\<int>.CenterRectUsingSingleLineHeight(Rect)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/centerrectusingsinglelineheight.md)
* [TreeView\<int>.AddExpandedRows(TreeViewItem\<int>, IList\<TreeViewItem\<int>>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/addexpandedrows.md)
* [TreeView\<int>.SelectionChanged(IList\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/selectionchanged.md)
* [TreeView\<int>.SingleClickedItem(int)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/singleclickeditem.md)
* [TreeView\<int>.DoubleClickedItem(int)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/doubleclickeditem.md)
* [TreeView\<int>.ContextClickedItem(int)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/contextclickeditem.md)
* [TreeView\<int>.ContextClicked()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/contextclicked.md)
* [TreeView\<int>.ExpandedStateChanged()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/expandedstatechanged.md)
* [TreeView\<int>.SearchChanged(string)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/searchchanged.md)
* [TreeView\<int>.KeyEvent()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/keyevent.md)
* [TreeView\<int>.GetAncestors(int)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/getancestors.md)
* [TreeView\<int>.GetDescendantsThatHaveChildren(int)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/getdescendantsthathavechildren.md)
* [TreeView\<int>.CanMultiSelect(TreeViewItem\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/canmultiselect.md)
* [TreeView\<int>.CanRename(TreeViewItem\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/canrename.md)
* [TreeView\<int>.RenameEnded(RenameEndedArgs)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/renameended.md)
* [TreeView\<int>.CanStartDrag(CanStartDragArgs)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/canstartdrag.md)
* [TreeView\<int>.SetupDragAndDrop(SetupDragAndDropArgs)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/setupdraganddrop.md)
* [TreeView\<int>.HandleDragAndDrop(DragAndDropArgs)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/handledraganddrop.md)
* [TreeView\<int>.CanBeParent(TreeViewItem\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/canbeparent.md)
* [TreeView\<int>.CanChangeExpandedState(TreeViewItem\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/canchangeexpandedstate.md)
* [TreeView\<int>.DoesItemMatchSearch(TreeViewItem\<int>, string)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/doesitemmatchsearch.md)
* [TreeView\<int>.RowGUI(RowGUIArgs)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/rowgui.md)
* [TreeView\<int>.BeforeRowsGUI()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/beforerowsgui.md)
* [TreeView\<int>.AfterRowsGUI()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/afterrowsgui.md)
* [TreeView\<int>.RefreshCustomRowHeights()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/refreshcustomrowheights.md)
* [TreeView\<int>.GetCustomRowHeight(int, TreeViewItem\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/getcustomrowheight.md)
* [TreeView\<int>.GetRenameRect(Rect, int, TreeViewItem\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/getrenamerect.md)
* [TreeView\<int>.CommandEventHandling()](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/commandeventhandling.md)
* [TreeView\<int>.SetupParentsAndChildrenFromDepths(TreeViewItem\<int>, IList\<TreeViewItem\<int>>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/setupparentsandchildrenfromdepths.md)
* [TreeView\<int>.SetupDepthsFromParentsAndChildren(TreeViewItem\<int>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/setupdepthsfromparentsandchildren.md)
* [TreeView\<int>.IsChildListForACollapsedParent(IList\<TreeViewItem\<int>>)](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/ischildlistforacollapsedparent.md)
* [TreeView\<int>.foldoutOverride](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/foldoutoverride.md)
* [TreeView\<int>.multiColumnHeader](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/multicolumnheader.md)
* [TreeView\<int>.enableItemHovering](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/enableitemhovering.md)
* [TreeView\<int>.isInitialized](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/isinitialized.md)
* [TreeView\<int>.treeViewRect](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/treeviewrect.md)
* [TreeView\<int>.baseIndent](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/baseindent.md)
* [TreeView\<int>.foldoutWidth](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/foldoutwidth.md)
* [TreeView\<int>.extraSpaceBeforeIconAndLabel](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/extraspacebeforeiconandlabel.md)
* [TreeView\<int>.customFoldoutYOffset](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/customfoldoutyoffset.md)
* [TreeView\<int>.columnIndexForTreeFoldouts](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/columnindexfortreefoldouts.md)
* [TreeView\<int>.useScrollView](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/usescrollview.md)
* [TreeView\<int>.depthIndentWidth](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/depthindentwidth.md)
* [TreeView\<int>.showAlternatingRowBackgrounds](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/showalternatingrowbackgrounds.md)
* [TreeView\<int>.showBorder](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/showborder.md)
* [TreeView\<int>.showingHorizontalScrollBar](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/showinghorizontalscrollbar.md)
* [TreeView\<int>.showingVerticalScrollBar](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/showingverticalscrollbar.md)
* [TreeView\<int>.cellMargin](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/cellmargin.md)
* [TreeView\<int>.totalHeight](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/totalheight.md)
* [TreeView\<int>.rowHeight](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/rowheight.md)
* [TreeView\<int>.treeViewControlID](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/treeviewcontrolid.md)
* [TreeView\<int>.isDragging](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/isdragging.md)
* [TreeView\<int>.hasSearch](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/hassearch.md)
* [TreeView\<int>.searchString](/engine/6000.5/script-reference/unityeditor/imgui/controls/treeview1/searchstring.md)
