LineBreakMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumeration specifying various options for line breaking.
public enum LineBreakMode
type LineBreakMode =
- Inheritance
-
System.EnumLineBreakMode
Fields
CharacterWrap | 2 | Wrap at character boundaries. |
HeadTruncation | 3 | Truncate the head of text. |
MiddleTruncation | 5 | Truncate the middle of text. This may be done, for example, by replacing it with an ellipsis. |
NoWrap | 0 | Do not wrap text. |
TailTruncation | 4 | Truncate the tail of text. |
WordWrap | 1 | Wrap at word boundaries. |