API / geotoolkit / attributes / TextStyle / WordBreakStyle
attributes.TextStyle.WordBreakStyle
Enum of word-break The word-break property sets whether line breaks appear wherever the text would otherwise overflow its content box. https://developer.mozilla.org/en-US/docs/Web/CSS/word-break
Enumeration Members
• BreakAll = "break-all"
BreakAll To prevent overflow, word breaks should be inserted between any two characters (excluding Chinese/Japanese/Korean text).
• BreakWord = "break-word"
BreakWord Has the same effect as WordBreak.Normal and OverflowWrap.Anywhere, regardless of the actual value of the OverflowWrap property.
• KeepAll = "keep-all"
KeepAll (not supported yet) Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. Non-CJK text behavior is the same as for WordBreakStyle.Normal.
• Normal = "normal"
Normal Use the default line break rule.
• Undefined = "undefined"
Undefined (Default) Backward compatibility