summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/DeviceOrientation.cs
blob: 0f50db8a8f410ee1547cb37f52f154c61d09c743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.ComponentModel;

namespace Xamarin.Forms.Internals
{
	[EditorBrowsable(EditorBrowsableState.Never)]
	public enum DeviceOrientation
	{
		Portrait,
		Landscape,
		PortraitUp,
		PortraitDown,
		LandscapeLeft,
		LandscapeRight,
		Other
	}
}