SvgStrokeLineCap.cs 768 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.ComponentModel;
  5. #pragma warning disable
  6. namespace Svg
  7. {
  8. /// <summary>Specifies the shape to be used at the end of open subpaths when they are stroked.</summary>
  9. [TypeConverter(typeof(SvgStrokeLineCapConverter))]
  10. public enum SvgStrokeLineCap
  11. {
  12. /// <summary>The value is inherited from the parent element.</summary>
  13. Inherit,
  14. /// <summary>The ends of the subpaths are square but do not extend past the end of the subpath.</summary>
  15. Butt,
  16. /// <summary>The ends of the subpaths are rounded.</summary>
  17. Round,
  18. /// <summary>The ends of the subpaths are square.</summary>
  19. Square
  20. }
  21. }
  22. #pragma warning restore