![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <IConsoleManager.h>
Inheritance diagram for IConsoleCommandExecutor:Public Member Functions | |
| virtual | ~IConsoleCommandExecutor ()=default |
| virtual FName | GetName () const =0 |
| virtual FText | GetDisplayName () const =0 |
| virtual FText | GetDescription () const =0 |
| virtual FText | GetHintText () const =0 |
| virtual void | GetSuggestedCompletions (const TCHAR *Input, TArray< FConsoleSuggestion > &Out)=0 |
| virtual void | GetAutoCompleteSuggestions (const TCHAR *Input, TArray< FString > &Out) |
| virtual void | GetExecHistory (TArray< FString > &Out)=0 |
| virtual bool | Exec (const TCHAR *Input)=0 |
| virtual bool | AllowHotKeyClose () const =0 |
| virtual bool | AllowMultiLine () const =0 |
| virtual struct FInputChord | GetHotKey () const =0 |
| virtual struct FInputChord | GetIterateExecutorHotKey () const =0 |
Static Public Member Functions | |
| static FName | ModularFeatureName () |
Handles executing console commands
|
virtualdefault |
True if we allow the console to be closed using the "open console" hot-key.
Implemented in FEngineConsoleCommandExecutor.
True if we allow the console to create multi-line commands.
Implemented in FEngineConsoleCommandExecutor.
Execute the given command using this executor.
Implemented in FEngineConsoleCommandExecutor.
|
inlinevirtual |
Get the list of auto-complete suggestions for the given command.
Get the description of this executor.
Implemented in FEngineConsoleCommandExecutor.
Get the display name of this executor.
Implemented in FEngineConsoleCommandExecutor.
Get the list of commands that this executor has recently processed.
Implemented in FEngineConsoleCommandExecutor.
Get the hint text of this executor.
Implemented in FEngineConsoleCommandExecutor.
|
pure virtual |
Returns the hotkey for this executor
Implemented in FEngineConsoleCommandExecutor.
|
pure virtual |
Returns the hotkey to switch to the next executor. This is usually the same hotkey as GetHotKey but with a modifier, such as "`" turning into "Ctrl + `".
Implemented in FEngineConsoleCommandExecutor.
Get the name of this executor.
Implemented in FEngineConsoleCommandExecutor.
|
pure virtual |
Get the list of auto-complete suggestions for the given command.
Implemented in FEngineConsoleCommandExecutor.
Get the name identifying this modular feature set.