CefTextInputMode.cs 622 B

1234567891011121314151617181920212223242526
  1. //
  2. // This file manually written from cef/include/internal/cef_types.h.
  3. // C API name: cef_text_input_mode_t.
  4. //
  5. namespace Xilium.CefGlue
  6. {
  7. /// <summary>
  8. /// Input mode of a virtual keyboard. These constants match their equivalents
  9. /// in Chromium's text_input_mode.h and should not be renumbered.
  10. /// See https://html.spec.whatwg.org/#input-modalities:-the-inputmode-attribute
  11. /// </summary>
  12. public enum CefTextInputMode
  13. {
  14. Default,
  15. None,
  16. Text,
  17. Tel,
  18. Url,
  19. Email,
  20. Numeric,
  21. Decimal,
  22. Search,
  23. Max = Search,
  24. }
  25. }