// Copyright © 2016 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.
using System;
namespace CefSharp
{
///
/// ContextMenuType
///
[Flags]
public enum ContextMenuType
{
///
/// No node is selected.
///
None = 0,
///
/// The top page is selected.
///
Page = 1 << 0,
///
/// A subframe page is selected.
///
Frame = 1 << 1,
///
/// A link is selected.
///
Link = 1 << 2,
///
/// A media node is selected.
///
Media = 1 << 3,
///
/// There is a textual or mixed selection that is selected.
///
Selection = 1 << 4,
///
/// An editable element is selected.
///
Editable = 1 << 5,
}
}