WindowOpenDisposition Enumeration |
Version 118.6.80
The manner in which a link click should be opened.
Namespace:
CefSharp
Assembly:
CefSharp (in CefSharp.dll) Version: 118.6.80.0 (118.6.80.0)
Syntax public enum WindowOpenDisposition
public enum class WindowOpenDisposition
Members
| Member name | Value | Description |
---|
| Unknown | 0 |
An enum constant representing the unknown option.
|
| CurrentTab | 1 |
An enum constant representing the current tab option.
|
| SingletonTab | 2 |
Indicates that only one tab with the url should exist in the same window
|
| NewForegroundTab | 3 |
An enum constant representing the new foreground tab option.
|
| NewBackgroundTab | 4 |
An enum constant representing the new background tab option.
|
| NewPopup | 5 |
An enum constant representing the new popup option.
|
| NewWindow | 6 |
An enum constant representing the new window option.
|
| SaveToDisk | 7 |
An enum constant representing the save to disk option.
|
| OffTheRecord | 8 |
An enum constant representing the off the record option.
|
| IgnoreAction | 9 |
An enum constant representing the ignore action option.
|
| SwitchToTab | 10 |
Activates an existing tab containing the url, rather than navigating.
This is similar to SINGLETON_TAB, but searches across all windows from
the current profile and anonymity (instead of just the current one);
closes the current tab on switching if the current tab was the NTP with
no session history; and behaves like CURRENT_TAB instead of
NEW_FOREGROUND_TAB when no existing tab is found.
|
| NewPictureInPicture | 11 |
Creates a new document picture-in-picture window showing a child WebView.
|
See Also