Enum WordBreaking
Defines modes to determine when line breaks should appear when words overflow their content box.
public enum WordBreaking
Fields
BreakAll = 1To prevent overflow, word breaks should be inserted between any two characters (excluding Chinese/Japanese/Korean text).
BreakWord = 3Uses a combination of Standard and BreakAll rules in that order.
KeepAll = 2Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. Non-CJK text behavior is the same as for Standard
Standard = 0Use the default line break rule.