Value | Meaning |
---|---|
DWRITE_WORD_WRAPPING_WRAP0 | <summary> Words are broken across lines to avoid text overflowing the layout box. </summary> |
DWRITE_WORD_WRAPPING_NO_WRAP1 | <summary> 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. </summary> |
DWRITE_WORD_WRAPPING_EMERGENCY_BREAK2 | <summary> Words are broken across lines to avoid text overflowing the layout box. Emergency wrapping occurs if the word is larger than the maximum width. </summary> |
DWRITE_WORD_WRAPPING_WHOLE_WORD3 | <summary> Only wrap whole words, never breaking words (emergency wrapping) when the layout width is too small for even a single word. </summary> |
DWRITE_WORD_WRAPPING_CHARACTER4 | <summary> Wrap between any valid characters clusters. </summary> |