Enum DWriteWordWrapping
Word wrapping in multiline paragraph.
Namespace: JeremyAnsel.DirectX.DWrite
Assembly: JeremyAnsel.DirectX.DWrite.dll
Syntax
public enum DWriteWordWrapping
Fields
Name | Description |
---|---|
Character | Wrap between any valid characters clusters. |
EmergencyBreak | Words are broken across lines to avoid text overflowing the layout box. Emergency wrapping occurs if the word is larger than the maximum width. |
NoWrap | Words are kept within the same line even when it overflows the layout box. This option is often used with scrolling to reveal overflow text. |
WholeWord | Only wrap whole words, never breaking words (emergency wrapping) when the layout width is too small for even a single word. |
Wrap | Words are broken across lines to avoid text overflowing the layout box. |