Navigation
API > API/Runtime > API/Runtime/WebBrowser
Return value from dialog event handle specifying what action should be taken.
| Name | EWebBrowserDialogEventResponse |
| Type | enum |
| Header File | /Engine/Source/Runtime/WebBrowser/Public/IWebBrowserDialog.h |
| Include Path | #include "IWebBrowserDialog.h" |
Syntax
enum EWebBrowserDialogEventResponse
{
Unhandled,
Continue,
Ignore,
Handled,
}
Values
| Name | Remarks |
|---|---|
| Unhandled | Return Unhandled to use the default dialog implementation. |
| Continue | Do not show any dialog and return as if the user accepted the action. |
| Ignore | Do not show any dialog and return as if the user dismissed the action. |
| Handled | The event handler will take care of showing the dialog. |