summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/TextAlignment.cs
blob: 33fa72b096785356eb6e60fd8fab660a3315c585 (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
namespace Xamarin.Forms.Platform.Tizen.Native
{
	/// <summary>
	/// Enumerates values that describe alignemnt of text.
	/// </summary>
	public enum TextAlignment
	{
		/// <summary>
		/// Follow base TextAlignment
		/// </summary>
		None,

		/// <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,
	}
}