CefPointerType.cs 349 B

123456789101112131415161718
  1. //
  2. // This file manually written from cef/include/internal/cef_types.h.
  3. // C API name: cef_pointer_type_t.
  4. //
  5. namespace Xilium.CefGlue
  6. {
  7. /// <summary>
  8. /// The device type that caused the event.
  9. /// </summary>
  10. public enum CefPointerType
  11. {
  12. Touch = 0,
  13. Mouse,
  14. Pen,
  15. Eraser,
  16. Unknown,
  17. }
  18. }