mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-23 19:52:50 +08:00
22 lines
336 B
C#
22 lines
336 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,
|
|
} |