CefWindowOpenDisposition.cs 644 B

12345678910111213141516171819202122232425
  1. //
  2. // This file manually written from cef/include/internal/cef_types.h.
  3. // C API name: cef_window_open_disposition_t.
  4. //
  5. namespace Xilium.CefGlue
  6. {
  7. /// <summary>
  8. /// The manner in which a link click should be opened. These constants match
  9. /// their equivalents in Chromium's window_open_disposition.h and should not be
  10. /// renumbered.
  11. /// </summary>
  12. public enum CefWindowOpenDisposition
  13. {
  14. Unknown = 0,
  15. CurrentTab,
  16. SingletonTab,
  17. NewForegroundTab,
  18. NewBackgroundTab,
  19. NewPopup,
  20. NewWindow,
  21. SaveToDisk,
  22. OffTheRecord,
  23. IgnoreAction,
  24. }
  25. }