Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FConfigFile
Description
Process the property for Writing to a default file. We will need to check for array operations, as default ini's rely on this being correct to function properly
| Name | ProcessPropertyAndWriteForDefaults |
| 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 |
void ProcessPropertyAndWriteForDefaults
(
int32 IniCombineThreshold,
const TArray < const FConfigValue * > & InCompletePropertyToProcess,
FString & OutText,
const FString & SectionName,
const FString & PropertyName
)
Parameters
| Name | Remarks |
|---|---|
| IniCombineThreshold | Cutoff level for combining ini (to prevent applying changes from the same ini that we're writing) |
| InCompletePropertyToProcess | The complete property which we need to process for saving. |
| OutText | The stream we are processing the array to |
| SectionName | The section name the array property is being written to |
| PropertyName | The property name of the array |