CefPaintElementType.cs 295 B

123456789101112131415
  1. //
  2. // This file manually written from cef/include/internal/cef_types.h.
  3. // C API name: cef_paint_element_type_t.
  4. //
  5. namespace Xilium.CefGlue
  6. {
  7. /// <summary>
  8. /// Paint element types.
  9. /// </summary>
  10. public enum CefPaintElementType
  11. {
  12. View = 0,
  13. Popup,
  14. }
  15. }