Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/UEnum
Description
Returns the unlocalized logical name originally assigned to the enum at creation. By default this is the same as the short name but it is overridden in child classes with different internal name storage. This name is consistent in cooked and editor builds and is useful for things like external data import/export.
| Name | GetAuthoredNameStringByIndex |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/Class.h |
| Include Path | #include "UObject/Class.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/Enum.cpp |
virtual FString GetAuthoredNameStringByIndex
(
int32 InIndex
) const
The author-specified name, or an empty string if Index is invalid
Parameters
| Name | Remarks |
|---|---|
| InIndex | Index of the enum value to get Display Name for |