// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts {
///
/// Specifies how an inline placeholder is aligned against surrounding text.
///
public enum TextPlaceholderAlignment
{
///
/// Align the placeholder baseline with the surrounding text baseline.
///
Baseline,
///
/// Align the placeholder above the surrounding text baseline.
///
AboveBaseline,
///
/// Align the placeholder below the surrounding text baseline.
///
BelowBaseline,
///
/// Align the placeholder with the top of the surrounding line box.
///
Top,
///
/// Align the placeholder with the bottom of the surrounding line box.
///
Bottom,
///
/// Align the placeholder with the middle of the surrounding line box.
///
Middle
}
}