Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FConfigValue
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static FString ExpandValue
(
const FString& InCollapsedValue |
Given a collapsed config value, try and produce an expanded version of it (removing any placeholder tokens). | Misc/ConfigCacheIni.h | |
static bool ExpandValue
(
const FString& InCollapsedValue, |
Given a collapsed config value, try and produce an expanded version of it (removing any placeholder tokens). | Misc/ConfigCacheIni.h |
ExpandValue(const FString &)
Description
Given a collapsed config value, try and produce an expanded version of it (removing any placeholder tokens).
| Name | ExpandValue |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/ConfigCacheIni.h |
| Include Path | #include "Misc/ConfigCacheIni.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/ConfigCacheIni.cpp |
static FString ExpandValue
(
const FString & InCollapsedValue
)
The expanded version of the config value.
Parameters
| Name | Remarks |
|---|---|
| InCollapsedValue | The collapsed config value to try and expand. |
ExpandValue(const FString &, FString &)
Description
Given a collapsed config value, try and produce an expanded version of it (removing any placeholder tokens).
| Name | ExpandValue |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/ConfigCacheIni.h |
| Include Path | #include "Misc/ConfigCacheIni.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/ConfigCacheIni.cpp |
static bool ExpandValue
(
const FString & InCollapsedValue,
FString & OutExpandedValue
)
true if expansion occurred, false if the collapsed and expanded values are equal.
Parameters
| Name | Remarks |
|---|---|
| InCollapsedValue | The collapsed config value to try and expand. |
| OutExpandedValue | String to fill with the expanded version of the config value. |