summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/TextAlignment.cs
blob: c7e934bfc847ad4a1dc3c83b1b9a5c1c99d33c0a (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
namespace Xamarin.Forms.Platform.Tizen.Native
{
	/// <summary>
	/// Enumerates values that describe alignemnt of text.
	/// </summary>
	public enum TextAlignment
	{
		/// <summary>
		/// Aligns horizontal text according to language. Top aligned for vertical text.
		/// </summary>
		Auto,
		/// <summary>
		/// Left and top aligned for horizontal and vertical text, respectively.
		/// </summary>
		Start,
		/// <summary>
		/// Right and bottom aligned for horizontal and  vertical text, respectively.
		/// </summary>
		End,
		/// <summary>
		/// Center-aligned text.
		/// </summary>
		Center,
	}
}