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