PdfPig/src/UglyToad.PdfPig/Content/TextDirection.cs

34 lines
668 B
C#
Raw Normal View History

2019-04-24 04:49:29 +08:00
namespace UglyToad.PdfPig.Content
{
/// <summary>
/// Direction of the text.
/// </summary>
public enum TextDirection
{
/// <summary>
/// Other text direction.
/// </summary>
Other,
/// <summary>
/// Usual text direction (Left to Right).
/// </summary>
Horizontal,
2019-04-24 04:49:29 +08:00
/// <summary>
/// Horizontal text, upside down.
/// </summary>
Rotate180,
/// <summary>
/// Rotated text going down.
/// </summary>
Rotate90,
/// <summary>
/// Rotated text going up.
/// </summary>
Rotate270
}
}