Navigation
API > API/Editor > API/Editor/UnrealEd
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
EAppReturnType::Type OpenMsgDlgInt
(
EAppMsgType::Type InMessageType, |
Opens a modal/blocking message box dialog (with an additional 'copy message text' button), and returns the result immediately Internal use only. | Dialogs/Dialogs.h | |
EAppReturnType::Type OpenMsgDlgInt
(
EAppMsgType::Type InMessageType, |
Opens a modal/blocking message box dialog (with an additional 'copy message text' button), and returns the result immediately Internal use only. | Dialogs/Dialogs.h |
OpenMsgDlgInt(EAppMsgType::Type, const FText &, const FText &)
Description
Opens a modal/blocking message box dialog (with an additional 'copy message text' button), and returns the result immediately Internal use only. Call FMessageDialog::Open instead.
| Name | OpenMsgDlgInt |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Public/Dialogs/Dialogs.h |
| Include Path | #include "Dialogs/Dialogs.h" |
| Source | /Engine/Source/Editor/UnrealEd/Private/Dialogs/Dialogs.cpp |
EAppReturnType::Type OpenMsgDlgInt
(
EAppMsgType::Type InMessageType,
const FText & InMessage,
const FText & InTitle
)
Returns the result of the user input
Parameters
| Name | Remarks |
|---|---|
| InMessageType | The type of message box to display (e.g. 'ok', or 'yes'/'no' etc.) |
| InMessage | The message to display in the message box |
| InTitle | The title to display for the message box |
OpenMsgDlgInt(EAppMsgType::Type, EAppReturnType::Type, const FText &, const FText &)
Description
Opens a modal/blocking message box dialog (with an additional 'copy message text' button), and returns the result immediately Internal use only. Call FMessageDialog::Open instead.
| Name | OpenMsgDlgInt |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Public/Dialogs/Dialogs.h |
| Include Path | #include "Dialogs/Dialogs.h" |
| Source | /Engine/Source/Editor/UnrealEd/Private/Dialogs/Dialogs.cpp |
EAppReturnType::Type OpenMsgDlgInt
(
EAppMsgType::Type InMessageType,
EAppReturnType::Type InDefaultValue,
const FText & InMessage,
const FText & InTitle
)
Returns the result of the user input
Parameters
| Name | Remarks |
|---|---|
| InMessageType | The type of message box to display (e.g. 'ok', or 'yes'/'no' etc.) |
| InDefaultValue | If the application is Unattended, the function will log and return DefaultValue |
| InMessage | The message to display in the message box |
| InTitle | The title to display for the message box |