Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FConfigValue
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static FString CollapseValue
(
const FString& InExpandedValue |
Given an expanded config value, try and produce a collapsed version of it (adding any placeholder tokens). | Misc/ConfigCacheIni.h | |
static bool CollapseValue
(
const FString& InExpandedValue, |
Given an expanded config value, try and produce a collapsed version of it (adding any placeholder tokens). | Misc/ConfigCacheIni.h |
CollapseValue(const FString &)
Description
Given an expanded config value, try and produce a collapsed version of it (adding any placeholder tokens).
| Name | CollapseValue |
| 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 CollapseValue
(
const FString & InExpandedValue
)
The collapsed version of the config value.
Parameters
| Name | Remarks |
|---|---|
| InExpandedValue | The expanded config value to try and expand. |
CollapseValue(const FString &, FString &)
Description
Given an expanded config value, try and produce a collapsed version of it (adding any placeholder tokens).
| Name | CollapseValue |
| 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 CollapseValue
(
const FString & InExpandedValue,
FString & OutCollapsedValue
)
true if collapsing occurred, false if the collapsed and expanded values are equal.
Parameters
| Name | Remarks |
|---|---|
| InExpandedValue | The expanded config value to try and expand. |
| OutCollapsedValue | String to fill with the collapsed version of the config value. |