1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.ComponentModel;
- #pragma warning disable
- namespace Svg
- {
- /// <summary>Specifies the shape to be used at the corners of paths or basic shapes when they are stroked.</summary>
- [TypeConverter(typeof(SvgStrokeLineJoinConverter))]
- public enum SvgStrokeLineJoin
- {
- /// <summary>The value is inherited from the parent element.</summary>
- Inherit,
- /// <summary>The corners of the paths are joined sharply.</summary>
- Miter,
- /// <summary>The corners of the paths are rounded off.</summary>
- Round,
- /// <summary>The corners of the paths are "flattened".</summary>
- Bevel
- }
- }
- #pragma warning restore
|