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
// 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 transformations that are added to the text of an element.</summary>
    [Flags]
    public enum SvgTextTransformation
    {
        /// <summary>The value is inherited from the parent element.</summary>
        Inherit = 0,
 
        /// <summary>The text is not transformed.</summary>
        None = 1,
 
        /// <summary>First letter of each word of the text is converted to uppercase.</summary>
        Capitalize = 2,
 
        /// <summary>The text is converted to uppercase.</summary>
        Uppercase = 4,
 
        /// <summary>The text is converted to lowercase.</summary>
        Lowercase = 8
    }
}