summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/LineBreakMode.cs
blob: e8727f44e4274eb208894097d1780afcba6190ad (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
37
38
39
40
41
42
43
44
45
46
47
48
namespace Xamarin.Forms.Platform.Tizen.Native
{
	/// <summary>
	/// Enumerates values that describe options for line braking.
	/// </summary>
	public enum LineBreakMode
	{
		/// <summary>
		/// Follow base LineBreakMode.
		/// </summary>
		None,

		/// <summary>
		/// Do not wrap text.
		/// </summary>
		NoWrap,

		/// <summary>
		/// Wrap at character boundaries.
		/// </summary>
		CharacterWrap,

		/// <summary>
		/// Wrap at word boundaries.
		/// </summary>
		WordWrap,

		/// <summary>
		/// Tries to wrap at word boundaries, and then wrap at a character boundary if the word is too long.
		/// </summary>
		MixedWrap,

		/// <summary>
		/// Truncate the head of text.
		/// </summary>
		HeadTruncation,

		/// <summary>
		/// Truncate the middle of text. This may be done, for example, by replacing it with an ellipsis.
		/// </summary>
		MiddleTruncation,

		/// <summary>
		/// Truncate the tail of text.
		/// </summary>
		TailTruncation,
	}
}