mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2025-12-27 08:17:57 +01:00
* Add width to panels * Add height to panels * Replace RenderContext with RenderOptions * Remove exclusivity from alternative buffer * Add Layout widget * Add Align widget
23 lines
342 B
C#
23 lines
342 B
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// Represents horizontal alignment.
|
|
/// </summary>
|
|
public enum HorizontalAlignment
|
|
{
|
|
/// <summary>
|
|
/// Left aligned.
|
|
/// </summary>
|
|
Left,
|
|
|
|
/// <summary>
|
|
/// Centered.
|
|
/// </summary>
|
|
Center,
|
|
|
|
/// <summary>
|
|
/// Right aligned.
|
|
/// </summary>
|
|
Right,
|
|
}
|