// -----------------------------------------------------------------------
//
// Copyright 2015 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Media
{
///
/// Defines how text is aligned.
///
public enum TextAlignment
{
///
/// The text is left-aligned.
///
Left,
///
/// The text is centered.
///
Center,
///
/// The text is right-aligned.
///
Right,
}
}