namespace Xamarin.Forms.Platform.Tizen.Native { /// /// Enumerates values that describe alignemnt of text. /// public enum TextAlignment { /// /// Follow base TextAlignment /// None, /// /// Aligns horizontal text according to language. Top aligned for vertical text. /// Auto, /// /// Left and top aligned for horizontal and vertical text, respectively. /// Start, /// /// Right and bottom aligned for horizontal and vertical text, respectively. /// End, /// /// Center-aligned text. /// Center, } }