Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Source/Runtime/CoreUObject/Public/UObject/Class.h |
Include |
#include "UObject/Class.h" |
enum EGetByNameFlags
{
None = 0,
ErrorIfNotFound = 0x01,
CaseSensitive = 0x02,
CheckAuthoredName = 0x04,
}
Name |
Description |
---|---|
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 |
Optional flags for the UEnum::Get*ByName() functions.