CPF/CPF/Drawing/TextAlignment.cs
2023-11-21 23:05:03 +08:00

33 lines
703 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CPF.Drawing
{
/// <summary>
/// 文档元素对齐方式
/// </summary>
public enum TextAlignment : byte
{
/// <summary>
/// In horizontal inline progression, the text is aligned on the left.
/// </summary>
Left,
/// <summary>
/// In horizontal inline progression, the text is aligned on the right.
/// </summary>
Right,
/// <summary>
/// The text is center aligned.
/// </summary>
Center,
///// <summary>
///// The text is justified.
///// </summary>
//Justify,
}
}