tangxu
2024-10-22 4d9fe5ed98ceb6b8fe9dc52ebfb80860ad1aee99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// THIS FILE IS PART OF SVG PROJECT
// THE SVG PROJECT IS AN OPENSOURCE LIBRARY LICENSED UNDER THE MS-PL License.
// COPYRIGHT (C) svg-net. ALL RIGHTS RESERVED.
// GITHUB: https://github.com/svg-net/SVG
 
using System;
 
namespace AntdUI.Svg
{
    /// <summary>This property describes decorations that are added to the text of an element. Conforming SVG Viewers are not required to support the blink value.</summary>
    [Flags]
    public enum SvgTextDecoration
    {
        /// <summary>The value is inherited from the parent element.</summary>
        Inherit = 0,
 
        /// <summary>The text is not decorated</summary>
        None = 1,
 
        /// <summary>The text is underlined.</summary>
        Underline = 2,
 
        /// <summary>The text is overlined.</summary>
        Overline = 4,
 
        /// <summary>The text is struck through.</summary>
        LineThrough = 8,
 
        /// <summary>The text will blink.</summary>
        Blink = 16
    }
}