Navigation
API > API/Runtime > API/Runtime/WebBrowser
References
| Module | WebBrowser |
| Header | /Engine/Source/Runtime/WebBrowser/Public/IWebBrowserDialog.h |
| Include | #include "IWebBrowserDialog.h" |
Syntax
enum EWebBrowserDialogEventResponse
{
Unhandled,
Continue,
Ignore,
Handled,
}
Values
| Name | Description |
|---|---|
| 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. |
Remarks
Return value from dialog event handle specifying what action should be taken.