IncludeCollectionNames
IncludeCollectionNames
#Overview
name: IncludeCollectionNames
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/BaseEditorSettings.ini:45, section: [/Script/UnrealEd.ContentBrowserSettings]
- INI Section:
/Script/UnrealEd.ContentBrowserSettings
- Raw value:
True
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Editor/UnrealEd/Classes/Settings/ContentBrowserSettings.h:178
Scope (from outer to inner):
file
class class UContentBrowserSettings : public UObject
function void SetIncludeCollectionNames
Source code excerpt:
void SetIncludeCollectionNames(bool bInclude)
{
IncludeCollectionNames = bInclude;
}
/** Gets whether text searches should also search for collection names */
bool GetIncludeCollectionNames() const
{
return IncludeCollectionNames;
}
/**
* Returns an event delegate that is executed when a setting has changed.
*
* @return The delegate.
#Loc: <Workspace>/Engine/Source/Editor/UnrealEd/Classes/Settings/ContentBrowserSettings.h:233
Scope (from outer to inner):
file
class class UContentBrowserSettings : public UObject
Source code excerpt:
UPROPERTY(config)
bool IncludeCollectionNames;
// Holds an event delegate that is executed when a setting has changed.
static UNREALED_API FSettingChangedEvent SettingChangedEvent;
};