// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.Fonts { /// /// Kerning is the contextual adjustment of inter-glyph spacing. /// This property controls metric kerning, kerning that utilizes adjustment data contained in the font. /// public enum KerningMode { /// /// Specifies that kerning is applied. /// Standard, /// /// Specifies that kerning is not applied. /// None, /// /// Specifies that kerning is applied at the discretion of the layout engine. /// Auto, } }