Navigation
API > API/Developer > API/Developer/OutputLog > API/Developer/OutputLog/FOutputLogModule
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual UE::OutputLog::FConsoleInputBoxCreationResult MakeConsoleInputBox
(
const UE::OutputLog::FConsoleInputBoxCreationParams& InCreationParams |
Creates a console input box widget | OutputLogModule.h | |
virtual TSharedRef< SWidget > MakeConsoleInputBox
(
TSharedPtr< SMultiLineEditableTextBox >& OutExposedEditableTextBox, |
Generates a console input box widget. | OutputLogModule.h |
MakeConsoleInputBox(const UE::OutputLog::FConsoleInputBoxCreationParams &)
Description
Creates a console input box widget
The widget becomes invalid if the OutputLog module is unloaded at runtime
| Name | MakeConsoleInputBox |
| Type | function |
| Header File | /Engine/Source/Developer/OutputLog/Public/OutputLogModule.h |
| Include Path | #include "OutputLogModule.h" |
| Source | /Engine/Source/Developer/OutputLog/Private/OutputLogModule.cpp |
virtual UE::OutputLog::FConsoleInputBoxCreationResult MakeConsoleInputBox
(
const UE::OutputLog::FConsoleInputBoxCreationParams & InCreationParams
) const
Result structure that contains the requested widget and additional data
Parameters
| Name | Remarks |
|---|---|
| InCreationParams | Input box creation parameters |
MakeConsoleInputBox(TSharedPtr< SMultiLineEditableTextBox > &, const FSimpleDelegate &, const FSimpleDelegate &)
Description
Generates a console input box widget. Remember, this widget will become invalid if the output log DLL is unloaded on the fly.
| Name | MakeConsoleInputBox |
| Type | function |
| Header File | /Engine/Source/Developer/OutputLog/Public/OutputLogModule.h |
| Include Path | #include "OutputLogModule.h" |
| Source | /Engine/Source/Developer/OutputLog/Private/OutputLogModule.cpp |
virtual TSharedRef< SWidget > MakeConsoleInputBox
(
TSharedPtr< SMultiLineEditableTextBox > & OutExposedEditableTextBox,
const FSimpleDelegate & OnCloseConsole,
const FSimpleDelegate & OnConsoleCommandExecuted
) const