Class TreeView
Similar to ListView, but can display a hierarchical tree of elements.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: UE4.UMG
Assembly: UE4DotNet.dll
Syntax
public class TreeView : ListView
Remarks
The base items source for the tree identifies the root items, each of which can have n associated child items. There is no hard limit to the nesting - child items can have children and so on
Properties
| Improve this Doc View SourceDefaultObject
Get UE4 Default Object for this Class
Declaration
public static TreeView DefaultObject { get; }
Property Value
Type | Description |
---|---|
TreeView |
StaticClass
Get UE4 Class
Declaration
public static Class StaticClass { get; }
Property Value
Type | Description |
---|---|
Class |
Methods
| Improve this Doc View SourceCollapseAll()
Collapses all currently expanded items
Declaration
public void CollapseAll()
ExpandAll()
Expands all items with children
Declaration
public void ExpandAll()
New(UObject, Name)
Spawn an object of this class
Declaration
public static TreeView New(UObject obj = null, Name name = default(Name))
Parameters
Type | Name | Description |
---|---|---|
UObject | obj | |
Name | name |
Returns
Type | Description |
---|---|
TreeView |
SetItemExpansion(UObject, Boolean)
Attempts to expand/collapse the given item (only relevant if the item has children)
Declaration
public void SetItemExpansion(UObject Item, bool bExpandItem)
Parameters
Type | Name | Description |
---|---|---|
UObject | Item | |
System.Boolean | bExpandItem |
Operators
| Improve this Doc View SourceImplicit(IntPtr to TreeView)
Convert from IntPtr to UObject
Declaration
public static implicit operator TreeView(IntPtr p)
Parameters
Type | Name | Description |
---|---|---|
System.IntPtr | p |
Returns
Type | Description |
---|---|
TreeView |