TextWrapping¶
Summary¶
Specifies whether text wraps when it reaches the edge of the containing box.
Signature¶
1 |
|
Namespace¶
cAlgo.API
Fields¶
Name | Description |
---|---|
WrapWithOverflow | Line-breaking occurs if the line overflows beyond the available block width. However, a line may overflow beyond the block width if the line breaking algorithm cannot determine a line break opportunity, as in the case of a very long word constrained in a fixed-width container with no scrolling allowed. |
NoWrap | No line wrapping is performed. |
Wrap | Line-breaking occurs if the line overflows beyond the available block width, even if the standard line breaking algorithm cannot determine any line break opportunity, as in the case of a very long word constrained in a fixed-width container with no scrolling allowed. |
Examples¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
Last update: March 17, 2023