SvgStrokeLineCap.cs 750 Bytes
Newer Older
davescriven's avatar
davescriven committed
1
2
3
using System;
using System.Collections.Generic;
using System.Text;
4
using System.ComponentModel;
davescriven's avatar
davescriven committed
5
6
7

namespace Svg
{
8
    /// <summary>Specifies the shape to be used at the end of open subpaths when they are stroked.</summary>
9
    [TypeConverter(typeof(SvgStrokeLineCapConverter))]
davescriven's avatar
davescriven committed
10
11
    public enum SvgStrokeLineCap
    {
12
13
14
15
        /// <summary>The value is inherited from the parent element.</summary>
        Inherit,

        /// <summary>The ends of the subpaths are square but do not extend past the end of the subpath.</summary>
davescriven's avatar
davescriven committed
16
        Butt,
17
18
        
        /// <summary>The ends of the subpaths are rounded.</summary>
davescriven's avatar
davescriven committed
19
        Round,
20
21
22

        /// <summary>The ends of the subpaths are square.</summary>
        Square
davescriven's avatar
davescriven committed
23
24
    }
}