using System; namespace Xamarin.Forms.Platform.Tizen.Native { /// /// Enumeration for the orientation of a rectangular screen. /// [Flags] public enum DisplayOrientations { /// /// No display orientation is specified. /// None = 0, /// /// The display is oriented in a natural position. /// Portrait = 1, /// /// The display's left side is at the top. /// Landscape = 2, /// /// The display is upside down. /// PortraitFlipped = 4, /// /// The display's right side is at the top. /// LandscapeFlipped = 8 } }