EGetByNameFlags

Optional flags for the UEnum::Get*ByName() functions.

Choose your operating system:

Windows

macOS

Linux

References

Module

CoreUObject

Header

/Engine/Source/Runtime/CoreUObject/Public/UObject/Class.h

Include

#include "UObject/Class.h"

Syntax

enum EGetByNameFlags
{
    None                 = 0,
    ErrorIfNotFound      = 0x01,
    CaseSensitive        = 0x02,
    CheckAuthoredName    = 0x04,
}

Values

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

Remarks

Optional flags for the UEnum::Get*ByName() functions.