Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FMetaData
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Return the value for the given key in the given property | UObject/MetaData.h | ||
| Return the value for the given key in the given property | UObject/MetaData.h |
GetValue(const UObject , const TCHAR )
Description
Return the value for the given key in the given property
| Name | GetValue |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/MetaData.h |
| Include Path | #include "UObject/MetaData.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/MetaData.cpp |
const FString & GetValue
(
const UObject * Object,
const TCHAR * Key
)
The value if found, otherwise an empty string
Parameters
| Name | Remarks |
|---|---|
| Object | the object to lookup the metadata for |
| Key | The key to lookup |
GetValue(const UObject *, FName)
Description
Return the value for the given key in the given property
| Name | GetValue |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/MetaData.h |
| Include Path | #include "UObject/MetaData.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/MetaData.cpp |
const FString & GetValue
(
const UObject * Object,
FName Key
)
The value if found, otherwise an empty string
Parameters
| Name | Remarks |
|---|---|
| Object | the object to lookup the metadata for |
| Key | The key to lookup |