Navigation
API > API/Plugins > API/Plugins/ConcertSharedSlate
Similar to EChildRelationship. Used for filtering using bit flags.
| Name | UE::ConcertSharedSlate::EChildRelationshipFlags |
| Type | enum |
| Header File | /Engine/Plugins/Developer/Concert/ConcertUI/ConcertSharedSlate/Source/ConcertSharedSlate/Public/Replication/Editor/Model/Object/IObjectHierarchyModel.h |
| Include Path | #include "Replication/Editor/Model/Object/IObjectHierarchyModel.h" |
Syntax
namespace UE
{
namespace ConcertSharedSlate
{
enum EChildRelationshipFlags
{
None = 0,
Component = 1 << 0,
Subobject = 1 << 1,
Unknown = 1 << 2,
All = Component | Subobject | Unknown,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| Component | The child is a component of the parent. |
| Subobject | The child is a subobject of the parent but no component. |
| Unknown | The relationship is not further specified / unknown (for example in non-editor builds you may need to use this due to missing runtime info) |
| All |