// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts {
///
/// Text justification modes.
///
public enum TextJustification
{
///
/// No justification
///
None = 0,
///
/// The text is justified by adding space between words (effectively varying word-spacing),
/// which is most appropriate for languages that separate words using spaces, like English or Korean.
///
InterWord,
///
/// The text is justified by adding space between characters (effectively varying letter-spacing),
/// which is most appropriate for languages like Japanese.
///
InterCharacter
}
}