Navigation
API > API/Runtime > API/Runtime/CoreUObject
Optional flags for the UEnum::Get*ByName() functions.
| Name | EGetByNameFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/Class.h |
| Include Path | #include "UObject/Class.h" |
Syntax
enum EGetByNameFlags
{
None = 0,
ErrorIfNotFound = 0x01,
CaseSensitive = 0x02,
CheckAuthoredName = 0x04,
}
Values
| Name | Remarks |
|---|---|
| None | |
| ErrorIfNotFound | Outputs an warning if the enum lookup fails |
| CaseSensitive | Does a case sensitive match |
| CheckAuthoredName | Checks the GetAuthoredNameStringByIndex value as well as normal names |