mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-25 04:32:51 +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
13 lines
307 B
C#
13 lines
307 B
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// Represents something that can be hidden.
|
|
/// </summary>
|
|
public interface IHasVisibility
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether or not the object should
|
|
/// be visible or not.
|
|
/// </summary>
|
|
bool IsVisible { get; set; }
|
|
} |