CefCrossAxisAlignment.cs 793 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // This file manually written from cef/include/internal/cef_types.h.
  3. // C API name: cef_cross_axis_alignment_t.
  4. //
  5. namespace Xilium.CefGlue
  6. {
  7. using System;
  8. /// <summary>
  9. /// Specifies where along the cross axis the CefBoxLayout child views should be
  10. /// laid out.
  11. /// </summary>
  12. public enum CefCrossAxisAlignment
  13. {
  14. /// <summary>
  15. /// Child views will be stretched to fit.
  16. /// </summary>
  17. Stretch,
  18. /// <summary>
  19. /// Child views will be left-aligned.
  20. /// </summary>
  21. Start,
  22. /// <summary>
  23. /// Child views will be center-aligned.
  24. /// </summary>
  25. Center,
  26. /// <summary>
  27. /// Child views will be right-aligned.
  28. /// </summary>
  29. End,
  30. }
  31. }