Enum LineBreakMode
Enumerates values that describe options for line braking.
Namespace: Tizen.UIExtensions.Common
Assembly: Tizen.UIExtensions.NUI.dll
Syntax
public enum LineBreakMode
Fields
Name | Description |
---|---|
CharacterWrap | Wrap at character boundaries. |
HeadTruncation | Truncate the head of text. |
MiddleTruncation | Truncate the middle of text. This may be done, for example, by replacing it with an ellipsis. |
MixedWrap | Tries to wrap at word boundaries, and then wrap at a character boundary if the word is too long. |
None | Follow base LineBreakMode. |
NoWrap | Do not wrap text. |
TailTruncation | Truncate the tail of text. |
WordWrap | Wrap at word boundaries. |