Navigation
API > API/Runtime > API/Runtime/WebBrowser
Type of browser dialog to show.
| Name | EWebBrowserDialogType |
| Type | enum |
| Header File | /Engine/Source/Runtime/WebBrowser/Public/IWebBrowserDialog.h |
| Include Path | #include "IWebBrowserDialog.h" |
Syntax
enum EWebBrowserDialogType
{
Alert = 0,
Confirm,
Prompt,
Unload = 127,
}
Values
| Name | Remarks |
|---|---|
| Alert | Alert dialog. Used to show a message to a user. It should only have a single button to dismiss it. |
| Confirm | Confirm dialog. |
| Prompt | Prompt dialog. |
| Unload | Unload dialog. |