Table of Contents

Enum WordBreaking

Namespace
SixLabors.Fonts
Assembly
SixLabors.Fonts.dll

Defines modes to determine when line breaks should appear when words overflow their content box.

public enum WordBreaking

Fields

BreakAll = 1

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

BreakWord = 3

Uses a combination of Standard and BreakAll rules in that order.

KeepAll = 2

Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. Non-CJK text behavior is the same as for Standard

Standard = 0

Use the default line break rule.