summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/FontWeight.cs
blob: 90bb637055edb5c83faa77cd87fad564b11499ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace Xamarin.Forms.Platform.Tizen.Native
{
	/// <summary>
	/// Enumerates values that describe options for line braking.
	/// </summary>
	public enum FontWeight
	{
		None,
		Normal,
		Thin,
		UltraLight,
		Light,
		Book,
		Medium,
		SemiBold,
		Bold,
		UltraBold,
		Black,
		ExtraBlack
	}
}