namespace WindowsDisplayAPI.Native.DisplayConfig { /// /// Rotation modes /// https://msdn.microsoft.com/en-us/library/windows/hardware/ff553970(v=vs.85).aspx /// public enum DisplayConfigRotation : uint { /// /// Rotation mode is not specified /// NotSpecified = 0, /// /// Indicates that rotation is 0 degrees—landscape mode. /// Identity = 1, /// /// Indicates that rotation is 90 degrees clockwise—portrait mode. /// Rotate90 = 2, /// /// Indicates that rotation is 180 degrees clockwise—inverted landscape mode. /// Rotate180 = 3, /// /// Indicates that rotation is 270 degrees clockwise—inverted portrait mode. /// Rotate270 = 4 } }