Navigation
API > API/Plugins > API/Plugins/CustomDetailsView
References
| |
|
| Module |
CustomDetailsView |
| Header |
/Engine/Plugins/Experimental/CustomDetailsView/Source/CustomDetailsView/Public/ICustomDetailsView.h |
| Include |
#include "ICustomDetailsView.h" |
Syntax
enum ECustomDetailsTreeInsertPosition
{
Before,
After,
FirstChild,
Child,
LastChild,
}
Values
| Name |
Description |
| Before |
Adds an item into the hierarchy on the same level as the current item but before it in the order. |
| After |
Adds an item into the hierarchy on the same level as the current item but after it in the order. |
| FirstChild |
Prepends an item to the current item's child items. |
| Child |
Appends an item to the current item's child items. |
| LastChild |
Appends an item to the current item's child items, but after the list above. |