ScreenOrientation Enumeration
Describes the orientation of a screen.
Definition
Namespace: Avalonia.Platform
Assembly: Avalonia.Controls (in Avalonia.Controls.dll)
- C#
- VB
- F#
public enum ScreenOrientation
Public Enumeration ScreenOrientation
type ScreenOrientation
Members
None | 0 | No screen orientation is specified. |
Landscape | 1 | Specifies that the monitor is oriented in landscape mode where the width of the screen viewing area is greater than the height. |
Portrait | 2 | Specifies that the monitor rotated 90 degrees in the clockwise direction to orient the screen in portrait mode where the height of the screen viewing area is greater than the width. |
LandscapeFlipped | 4 | Specifies that the monitor rotated another 90 degrees in the clockwise direction (to equal 180 degrees) to orient the screen in landscape mode where the width of the screen viewing area is greater than the height. This landscape mode is flipped 180 degrees from the Landscape mode. |
PortraitFlipped | 8 | Specifies that the monitor rotated another 90 degrees in the clockwise direction (to equal 270 degrees) to orient the screen in portrait mode where the height of the screen viewing area is greater than the width. This portrait mode is flipped 180 degrees from the Portrait mode. |