mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2026-01-01 16:59:37 +01:00
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
This commit is contained in:
12
src/Spectre.Console/IHasJustification.cs
Normal file
12
src/Spectre.Console/IHasJustification.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Spectre.Console;
|
||||
|
||||
/// <summary>
|
||||
/// Represents something that has justification.
|
||||
/// </summary>
|
||||
public interface IHasJustification
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the justification.
|
||||
/// </summary>
|
||||
Justify? Justification { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user