PdfPig/src/UglyToad.PdfPig/Content/TextOrientation.cs

34 lines
703 B
C#
Raw Normal View History

2019-04-24 04:49:29 +08:00
namespace UglyToad.PdfPig.Content
{
/// <summary>
/// Orientation of the text.
/// </summary>
public enum TextOrientation : byte
{
/// <summary>
/// Other text orientation.
/// </summary>
Other = 0,
/// <summary>
/// Usual text orientation (Left to Right).
/// </summary>
Horizontal = 1,
2019-04-24 04:49:29 +08:00
/// <summary>
/// Horizontal text, upside down.
/// </summary>
Rotate180 = 2,
2019-04-24 04:49:29 +08:00
/// <summary>
/// Rotated text going down.
/// </summary>
Rotate90 = 3,
/// <summary>
/// Rotated text going up.
/// </summary>
Rotate270 = 4
}
}