// 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
{
///
/// Supported context menu edit state bit flags.
///
[Flags]
public enum ContextMenuEditState
{
///
/// A binary constant representing the none flag.
///
None = 0,
///
/// A binary constant representing the can undo flag.
///
CanUndo = 1 << 0,
///
/// A binary constant representing the can redo flag.
///
CanRedo = 1 << 1,
///
/// A binary constant representing the can cut flag.
///
CanCut = 1 << 2,
///
/// A binary constant representing the can copy flag.
///
CanCopy = 1 << 3,
///
/// A binary constant representing the can paste flag.
///
CanPaste = 1 << 4,
///
/// A binary constant representing the can delete flag.
///
CanDelete = 1 << 5,
///
/// A binary constant representing the can select all flag.
///
CanSelectAll = 1 << 6,
///
/// A binary constant representing the can translate flag.
///
CanTranslate = 1 << 7,
}
}