using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;
namespace Svg
{
/// Specifies the shape to be used at the end of open subpaths when they are stroked.
[TypeConverter(typeof(SvgStrokeLineCapConverter))]
public enum SvgStrokeLineCap
{
/// The value is inherited from the parent element.
Inherit,
/// The ends of the subpaths are square but do not extend past the end of the subpath.
Butt,
/// The ends of the subpaths are rounded.
Round,
/// The ends of the subpaths are square.
Square
}
}