mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-19 02:12:49 +08:00

* Add width to panels * Add height to panels * Replace RenderContext with RenderOptions * Remove exclusivity from alternative buffer * Add Layout widget * Add Align widget
12 lines
262 B
C#
12 lines
262 B
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// Represents something that has justification.
|
|
/// </summary>
|
|
public interface IHasJustification
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the justification.
|
|
/// </summary>
|
|
Justify? Justification { get; set; }
|
|
} |