Navigation
API > API/Runtime > API/Runtime/WebBrowser
| |
|
| Name |
EWebTransitionSource |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/WebBrowser/Public/IWebBrowserWindow.h |
| Include Path |
#include "IWebBrowserWindow.h" |
Syntax
enum EWebTransitionSource
{
Unknown,
Link,
Explicit,
AutoSubframe,
ManualSubframe,
FormSubmit,
Reload,
}
Values
| Name |
Remarks |
| Unknown |
|
| Link |
Source is a link click or the JavaScript window.open function. |
| Explicit |
Source is some other "explicit" navigation action such as creating a new browser or using the LoadURL function. |
| AutoSubframe |
Source is a subframe navigation. |
| ManualSubframe |
Source is a subframe navigation explicitly requested by the user. |
| FormSubmit |
Source is a form submission by the user. |
| Reload |
Source is a "reload" of the page via the Reload function |