spectre.console/src/Spectre.Console/VerticalAlignment.cs
Patrik Svensson c3ec6a7363
Add Layout widget (#1041)
* Add width to panels
* Add height to panels
* Replace RenderContext with RenderOptions
* Remove exclusivity from alternative buffer
* Add Layout widget
* Add Align widget
2022-11-15 10:12:17 +01:00

23 lines
344 B
C#

namespace Spectre.Console;
/// <summary>
/// Represents vertical alignment.
/// </summary>
public enum VerticalAlignment
{
/// <summary>
/// Top aligned.
/// </summary>
Top,
/// <summary>
/// Middle aligned.
/// </summary>
Middle,
/// <summary>
/// Bottom aligned.
/// </summary>
Bottom,
}