CefTextStyle.cs 396 B

1234567891011121314151617181920
  1. //
  2. // This file manually written from cef/include/internal/cef_types.h.
  3. // C API name: cef_text_style_t.
  4. //
  5. namespace Xilium.CefGlue
  6. {
  7. using System;
  8. /// <summary>
  9. /// Text style types. Should be kepy in sync with gfx::TextStyle.
  10. /// </summary>
  11. public enum CefTextStyle
  12. {
  13. Bold,
  14. Italic,
  15. Strike,
  16. DiagonalStrike,
  17. Underline,
  18. }
  19. }