// Copyright © 2014 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.Enums
{
///
/// "Verb" of a drag-and-drop operation as negotiated between the source and destination.
///
[Flags]
public enum DragOperationsMask : uint
{
///
/// None
///
None = 0,
///
/// Copy
///
Copy = 1,
///
/// Link
///
Link = 2,
///
/// Generic
///
Generic = 4,
///
/// Private
///
Private = 8,
///
/// Move
///
Move = 16,
///
/// Delete
///
Delete = 32,
///
/// Every drag operation.
///
Every = uint.MaxValue
}
}