mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-23 19:52:50 +08:00

This is far from complete, but it's a start and it will enable us to create things like tables and other complex objects in the long run.
24 lines
410 B
C#
24 lines
410 B
C#
namespace Spectre.Console
|
|
{
|
|
/// <summary>
|
|
/// Represents text justification.
|
|
/// </summary>
|
|
public enum Justify
|
|
{
|
|
/// <summary>
|
|
/// Left aligned.
|
|
/// </summary>
|
|
Left = 0,
|
|
|
|
/// <summary>
|
|
/// Right aligned.
|
|
/// </summary>
|
|
Right = 1,
|
|
|
|
/// <summary>
|
|
/// Centered
|
|
/// </summary>
|
|
Center = 2,
|
|
}
|
|
}
|