// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts {
///
/// Defines modes to determine when line breaks should appear when words overflow
/// their content box.
///
public enum WordBreaking
{
///
/// Use the default line break rule.
///
Standard,
///
/// To prevent overflow, word breaks should be inserted between any two
/// characters (excluding Chinese/Japanese/Korean text).
///
BreakAll,
///
/// Word breaks should not be used for Chinese/Japanese/Korean (CJK) text.
/// Non-CJK text behavior is the same as for
///
KeepAll,
///
/// Uses a combination of and rules in that order.
///
BreakWord
}
}