1234567891011121314151617181920 |
- //
- // This file manually written from cef/include/internal/cef_types.h.
- // C API name: cef_text_style_t.
- //
- namespace Xilium.CefGlue
- {
- using System;
- /// <summary>
- /// Text style types. Should be kepy in sync with gfx::TextStyle.
- /// </summary>
- public enum CefTextStyle
- {
- Bold,
- Italic,
- Strike,
- DiagonalStrike,
- Underline,
- }
- }
|