Click or drag to resize

WindowOpenDisposition Enumeration

Version 102.0.100
The manner in which a link click should be opened.

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 102.0.100.0 (102.0.100.0)
Syntax
public enum WindowOpenDisposition
Members
  Member nameValueDescription
Unknown0 An enum constant representing the unknown option.
CurrentTab1 An enum constant representing the current tab option.
SingletonTab2 Indicates that only one tab with the url should exist in the same window
NewForegroundTab3 An enum constant representing the new foreground tab option.
NewBackgroundTab4 An enum constant representing the new background tab option.
NewPopup5 An enum constant representing the new popup option.
NewWindow6 An enum constant representing the new window option.
SaveToDisk7 An enum constant representing the save to disk option.
OffTheRecord8 An enum constant representing the off the record option.
IgnoreAction9 An enum constant representing the ignore action option.
SwitchToTab10 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.
NewPictureInPicture11 Creates a new document picture-in-picture window showing a child WebView.
See Also