summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/DisplayOrientations.cs
blob: efb09529f477efdc70c03443168bf5d0fab3088e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;

namespace Xamarin.Forms.Platform.Tizen.Native
{
	/// <summary>
	/// Enumeration for the orientation of a rectangular screen.
	/// </summary>
	[Flags]
	public enum DisplayOrientations
	{
		/// <summary>
		/// No display orientation is specified.
		/// </summary>
		None = 0,

		/// <summary>
		/// The display is oriented in a natural position.
		/// </summary>
		Portrait = 1,

		/// <summary>
		/// The display's left side is at the top.
		/// </summary>
		Landscape = 2,

		/// <summary>
		/// The display is upside down.
		/// </summary>
		PortraitFlipped = 4,

		/// <summary>
		/// The display's right side is at the top.
		/// </summary>
		LandscapeFlipped = 8
	}
}