// Copyright © 2015 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
///
/// The manner in which a link click should be opened.
///
public enum WindowOpenDisposition
{
///
/// An enum constant representing the unknown option.
///
Unknown,
///
/// An enum constant representing the current tab option.
///
CurrentTab,
///
/// Indicates that only one tab with the url should exist in the same window
///
SingletonTab,
///
/// An enum constant representing the new foreground tab option.
///
NewForegroundTab,
///
/// An enum constant representing the new background tab option.
///
NewBackgroundTab,
///
/// An enum constant representing the new popup option.
///
NewPopup,
///
/// An enum constant representing the new window option.
///
NewWindow,
///
/// An enum constant representing the save to disk option.
///
SaveToDisk,
///
/// An enum constant representing the off the record option.
///
OffTheRecord,
///
/// An enum constant representing the ignore action option.
///
IgnoreAction
}
}