namespace UglyToad.PdfPig.Content
{
///
/// Orientation of the text.
///
public enum TextOrientation : byte
{
///
/// Other text orientation.
///
Other = 0,
///
/// Usual text orientation (Left to Right).
///
Horizontal = 1,
///
/// Horizontal text, upside down.
///
Rotate180 = 2,
///
/// Rotated text going down.
///
Rotate90 = 3,
///
/// Rotated text going up.
///
Rotate270 = 4
}
}