MaxScrollbackSize

MaxScrollbackSize

#Overview

name: MaxScrollbackSize

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:60, 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:648

Scope (from outer to inner):

file
function     void UConsole::OutputTextLine

Source code excerpt:

{
	// If we are full, delete the first line
	if (Scrollback.Num() > ConsoleSettings->MaxScrollbackSize)
	{
		Scrollback.RemoveAt(0, 1);
		SBHead = ConsoleSettings->MaxScrollbackSize - 1;
	}
	else
	{
		SBHead++;
	}

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

Scope (from outer to inner):

file
class        class UConsoleSettings : public UObject

Source code excerpt:

	/** The maximum number of lines the console keeps in its output history. */
	UPROPERTY(globalconfig, EditAnywhere, Category=General)
	int32 MaxScrollbackSize;

	/** Manual list of auto-complete commands and info specified in BaseInput.ini */
	UPROPERTY(config, EditAnywhere, Category=AutoComplete)
	TArray<struct FAutoCompleteCommand> ManualAutoCompleteList;

	/** List of relative paths (e.g. Content/Maps) to search for map names for auto-complete usage. Specified in BaseInput.ini. */