// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts {
///
/// Vertical alignment modes.
///
public enum VerticalAlignment
{
///
/// Aligns downward from the top.
///
Top = 0,
///
/// Aligns text up and down from the middle.
///
Center = 1,
///
/// Aligns text upwards from the bottom.
///
Bottom = 2,
///
/// Aligns text to the baseline.
///
Baseline = 3
}
}