AutoCompleteCVarColor

AutoCompleteCVarColor

#Overview

name: AutoCompleteCVarColor

The value of this variable can be defined or overridden in .ini config files. 1 .ini config file referencing this setting variable.

It is referenced in 2 C++ source files.

#Summary

#Setting Variables

#References In INI files

Location: <Workspace>/Engine/Config/BaseInput.ini:254, section: [/Script/EngineSettings.ConsoleSettings]

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/UserInterface/Console.cpp:122

Scope (from outer to inner):

file
class        class FConsoleVariableAutoCompleteVisitor
function     static void OnConsoleVariable

Source code excerpt:

			else
			{
				Cmd.Color = ConsoleSettings->AutoCompleteCVarColor;
			}
		}
		else
		{
			Cmd.Color = ConsoleSettings->AutoCompleteCommandColor;
		}

#Loc: <Workspace>/Engine/Source/Runtime/EngineSettings/Classes/ConsoleSettings.h:100

Scope (from outer to inner):

file
class        class UConsoleSettings : public UObject

Source code excerpt:

	/** The autocomplete color used for mutable CVars. */
	UPROPERTY(config, EditAnywhere, Category=Colors)
	FColor AutoCompleteCVarColor;

	/** The autocomplete color used for command descriptions and read-only CVars. */
	UPROPERTY(config, EditAnywhere, Category=Colors)
	FColor AutoCompleteFadedColor;

	/** Returns an array with the auto-complete command names that match all the words in the substring. */