CefDragOperationsMask.cs 637 B

12345678910111213141516171819202122232425
  1. //
  2. // This file manually written from cef/include/internal/cef_types.h.
  3. // C API name: cef_drag_operations_mask.
  4. //
  5. namespace Xilium.CefGlue
  6. {
  7. using System;
  8. /// <summary>
  9. /// "Verb" of a drag-and-drop operation as negotiated between the source and
  10. /// destination. These constants match their equivalents in WebCore's
  11. /// DragActions.h and should not be renumbered.
  12. /// </summary>
  13. public enum CefDragOperationsMask : uint
  14. {
  15. None = 0,
  16. Copy = 1,
  17. Link = 2,
  18. Generic = 4,
  19. Private = 8,
  20. Move = 16,
  21. Delete = 32,
  22. Every = UInt32.MaxValue,
  23. }
  24. }