API / geotoolkit / attributes / TextStyle / WordBreakStyle

Enumeration: 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

Table of contents

Enumeration Members

Contents

Enumeration Members

BreakAll

BreakAll = "break-all"

BreakAll To prevent overflow, word breaks should be inserted between any two characters (excluding Chinese/Japanese/Korean text).


BreakWord

BreakWord = "break-word"

BreakWord Has the same effect as WordBreak.Normal and OverflowWrap.Anywhere, regardless of the actual value of the OverflowWrap property.


KeepAll

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"

Normal Use the default line break rule.


Undefined

Undefined = "undefined"

Undefined (Default) Backward compatibility