# GetFoldoutIndent(TreeViewItem<TIdentifier>)

> Returns the horizontal foldout offset for an item. This is where the foldout arrow is rendered.

## Definition

* **Type:** Method
* **Namespace:** [UnityEditor.IMGUI.Controls](/engine/6000.7/script-reference/unityeditor/imgui/controls.md)
* **Assembly:** UnityEditor.CoreModule

## GetFoldoutIndent(TreeViewItem\<T>)

```csharp
protected float GetFoldoutIndent(TreeViewItem<TIdentifier> item)
```

### Parameters

**** (\[TreeViewItem\<T>]\(/engine/6000.7/script-reference/unityeditor/imgui/controls/treeviewitem)): Item used to determine the indent.

### Returns

| Type                                                          | Description                   |
| ------------------------------------------------------------- | ----------------------------- |
| [float](https://learn.microsoft.com/dotnet/api/system.single) | Indent for the foldout arrow. |

### Remarks

Use this when overriding [TreeView\<TIdentifier>.RowGUI](/engine/6000.7/script-reference/unityeditor/imgui/controls/treeview1/rowgui.md) to make custom GUI content for the item.

Additional Resources: [TreeView\<TIdentifier>.GetContentIndent](/engine/6000.7/script-reference/unityeditor/imgui/controls/treeview1/getcontentindent.md).
