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