namespace WindowsDisplayAPI.Native.DeviceContext
{
///
/// Contains possible values for the display orientation
///
public enum DisplayOrientation : uint
{
///
/// No rotation
///
Identity = 0,
///
/// 90 degree rotation
///
Rotate90Degree = 1,
///
/// 180 degree rotation
///
Rotate180Degree = 2,
///
/// 270 degree rotation
///
Rotate270Degree = 3
}
}