using System;
using System.Collections.Generic;
using System.Text;
namespace PdfiumViewer
{
///
/// Specifies the rotation of pages shown in the PDF renderer.
///
public enum PdfRotation
{
///
/// Rotates the output 0 degrees.
///
Rotate0,
///
/// Rotates the output 90 degrees.
///
Rotate90,
///
/// Rotates the output 180 degrees.
///
Rotate180,
///
/// Rotates the output 270 degrees.
///
Rotate270
}
}