SvgStrokeLineJoin.cs 727 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 corners of paths or basic shapes when they are stroked.</summary>
9
    [TypeConverter(typeof(SvgStrokeLineJoinConverter))]
davescriven's avatar
davescriven committed
10
11
    public enum SvgStrokeLineJoin
    {
12
13
14
15
        /// <summary>The value is inherited from the parent element.</summary>
        Inherit,

        /// <summary>The corners of the paths are joined sharply.</summary>
davescriven's avatar
davescriven committed
16
        Miter,
17
18

        /// <summary>The corners of the paths are rounded off.</summary>
davescriven's avatar
davescriven committed
19
        Round,
20
21

        /// <summary>The corners of the paths are "flattened".</summary>
davescriven's avatar
davescriven committed
22
23
24
        Bevel
    }
}