Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FMetaData
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Returns the value for a the given key if it exists, null otherwise | UObject/MetaData.h | ||
| Returns the value for a the given key if it exists, null otherwise | UObject/MetaData.h |
FindValue(const UObject , const TCHAR )
Description
Returns the value for a the given key if it exists, null otherwise
| Name | FindValue |
| 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 * FindValue
(
const UObject * Object,
const TCHAR * Key
)
true if found
Parameters
| Name | Remarks |
|---|---|
| Object | the object to lookup the metadata for |
| Key | The key to query for existence |
FindValue(const UObject *, FName)
Description
Returns the value for a the given key if it exists, null otherwise
| Name | FindValue |
| 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 * FindValue
(
const UObject * Object,
FName Key
)
true if found
Parameters
| Name | Remarks |
|---|---|
| Object | the object to lookup the metadata for |
| Key | The key to query for existence |