namespace Xamarin.Forms.Platform.Tizen.Native { /// /// Enumerates values that describe options for line braking. /// public enum LineBreakMode { /// /// Follow base LineBreakMode. /// None, /// /// Do not wrap text. /// NoWrap, /// /// Wrap at character boundaries. /// CharacterWrap, /// /// Wrap at word boundaries. /// WordWrap, /// /// Tries to wrap at word boundaries, and then wrap at a character boundary if the word is too long. /// MixedWrap, /// /// Truncate the head of text. /// HeadTruncation, /// /// Truncate the middle of text. This may be done, for example, by replacing it with an ellipsis. /// MiddleTruncation, /// /// Truncate the tail of text. /// TailTruncation, } }