RemoteObject
- Return type: 
FName 
- Returns: the 
FName that corresponds to the specified value. 
- Iterates every 
FName/Value combination that belongs to this enum. 
- The callback has two params: 
FName Name, integer Value. 
- Return 
true in the callback to stop iterating. 
- Return types: 
FName, Integer 
- Returns: the 
FName that coresponds the given Index. 
- Returns: the 
Integer value that coresponds the given Index. 
- Inserts a 
FName/Value combination into a a UEnum at the given Index. 
- If 
ShiftValues = true, will shift all enum values greater than inserted value by one. 
- At a given 
Index, will modify the found element in the UEnum and replace its Name with the given NewName. 
- At a given 
Index, will modify the found element in the UEnum and replace its value with the given NewValue. 
- Will remove 
Count element(s) at the given Index from a UEnum. 
- If 
AllowShrinkning = true, will shrink the enum array when removing elements.