Navigation
API > API/Runtime > API/Runtime/CoreUObject
Provides more explicit control over if a property is added to PostConstruct & Destructor collections
| Name | EStructPropertyLinkFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/Class.h |
| Include Path | #include "UObject/Class.h" |
Syntax
enum EStructPropertyLinkFlags
{
None = 0,
LinkPostConstruct = 1 << 0,
LinkDestructor = 1 << 1,
}
Values
| Name | Remarks |
|---|---|
| None | Property should not be added to any link lists |
| LinkPostConstruct | If set, add the property to the post constructor link list |
| LinkDestructor | If set, add the property to the destructor link list |