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