mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-07-18 19:18:38 +08:00
34 lines
703 B
C#
34 lines
703 B
C#
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,
|
|
|
|
/// <summary>
|
|
/// Horizontal text, upside down.
|
|
/// </summary>
|
|
Rotate180 = 2,
|
|
|
|
/// <summary>
|
|
/// Rotated text going down.
|
|
/// </summary>
|
|
Rotate90 = 3,
|
|
|
|
/// <summary>
|
|
/// Rotated text going up.
|
|
/// </summary>
|
|
Rotate270 = 4
|
|
}
|
|
}
|