SvgStrokeLineJoin.cs 753 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 corners of paths or basic shapes when they are stroked.</summary>
  9. [TypeConverter(typeof(SvgStrokeLineJoinConverter))]
  10. public enum SvgStrokeLineJoin
  11. {
  12. /// <summary>The value is inherited from the parent element.</summary>
  13. Inherit,
  14. /// <summary>The corners of the paths are joined sharply.</summary>
  15. Miter,
  16. /// <summary>The corners of the paths are rounded off.</summary>
  17. Round,
  18. /// <summary>The corners of the paths are "flattened".</summary>
  19. Bevel
  20. }
  21. }
  22. #pragma warning restore