Navigation
API > API/Plugins > API/Plugins/EditorScriptingUtilities > API/Plugins/EditorScriptingUtilities/UEditorDialogLibrary
References
| Module | EditorScriptingUtilities |
| Header | /Engine/Plugins/Editor/EditorScriptingUtilities/Source/EditorScriptingUtilities/Public/EditorDialogLibrary.h |
| Include | #include "EditorDialogLibrary.h" |
| Source | /Engine/Plugins/Editor/EditorScriptingUtilities/Source/EditorScriptingUtilities/Private/EditorDialogLibrary.cpp |
UFUNCTION&40;BlueprintCallable, DisplayName&61;"Show Suppressable Warning Dialog",
Category&61;"Editor Scripting &124; Supressable Warning Dialog"&41;
static bool ShowSuppressableWarningDialog
&40;
const FText & Title,
const FText & Message,
const FString & InIniSettingName,
const FString & InIniSettingFileNameOverride,
bool bDefaultValue
&41;
Remarks
Open a modal suppressable warning window, if suppressed will return the default value The result of the users decision, or DefaultValue if suppressed.
Parameters
| Name | Description |
|---|---|
| Title | The title of the created dialog window |
| Message | Text of the message to show |
| InIniSettingName | The name of the entry in the INI where the state of the "Disable this warning" check box is stored |
| InIniSettingFileNameOverride | The name of the INI where the state of the InIniSettingName flag is stored (defaults to GEditorPerProjectIni) |
| bDefaultValue | If the warning is suppressed, the function will log and return DefaultValue |