API / geotoolkit / attributes / TextStyle / OverflowWrapStyle
attributes.TextStyle.OverflowWrapStyle
Enum of overflow-wrap The overflow-wrap property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box. https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrap
Enumeration Members
• Anywhere = "anywhere"
Anywhere To prevent overflow, an otherwise unbreakable string of characters — like a long word or URL — may be broken at any point if there are no otherwise-acceptable break points in the line. No hyphenation character is inserted at the break point. Soft wrap opportunities introduced by the word break are considered when calculating min-content intrinsic sizes.
• BreakWord = "break-word"
BreakWord The same as the anywhere value, with normally unbreakable words allowed to be broken at arbitrary points if there are no otherwise acceptable break points in the line, but soft wrap opportunities introduced by the word break are NOT considered when calculating min-content intrinsic sizes.
• Normal = "normal"
Normal (Default) Lines may only break at normal word break points (such as a space between two words).
• Undefined = "undefined"
Undefined (Default) Backward compatibility