Navigation
API > API/Plugins > API/Plugins/CustomDetailsView
| |
|
| Name |
ECustomDetailsTreeInsertPosition |
| Type |
enum |
| Header File |
/Engine/Plugins/VirtualProduction/CustomDetailsView/Source/CustomDetailsView/Public/ICustomDetailsView.h |
| Include Path |
#include "ICustomDetailsView.h" |
Syntax
enum ECustomDetailsTreeInsertPosition
{
Before,
After,
FirstChild,
Child,
LastChild,
}
Values
| Name |
Remarks |
| 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. |