DumpCCmds
DumpCCmds
#Overview
name: DumpCCmds
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Lists all CVars (or a subset) and their values. Can also show help, and can save to .csv.\nUsage: DumpCCmds [Prefix] [-showhelp] [-csv=[path]]\nIf -csv does not have a file specified, it will create a file in the Project Logs directory
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/HAL/ConsoleManager.cpp:3389
Scope (from outer to inner):
file
function void CreateConsoleVariables
Source code excerpt:
TEXT("Lists all CVars (or a subset) and their values. Can also show help, and can save to .csv.\nUsage: DumpCVars [Prefix] [-showhelp] [-csv=[path]]\nIf -csv does not have a file specified, it will create a file in the Project Logs directory"),
ECVF_Default);
IConsoleManager::Get().RegisterConsoleCommand(TEXT("DumpCCmds"),
TEXT("Lists all CVars (or a subset) and their values. Can also show help, and can save to .csv.\nUsage: DumpCCmds [Prefix] [-showhelp] [-csv=[path]]\nIf -csv does not have a file specified, it will create a file in the Project Logs directory"),
ECVF_Default);
#endif // !UE_BUILD_SHIPPING
// testing code
{
FConsoleManager& ConsoleManager = (FConsoleManager&)IConsoleManager::Get();