// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.Fonts { /// /// Specifies hyphenation marker behavior when text breaks at hyphenation opportunities. /// public enum TextHyphenation { /// /// Do not insert a hyphenation marker. /// None = 0, /// /// Insert the standard hyphenation marker. /// Standard, /// /// Insert the marker specified by . /// Custom } }