spectre.console/src/Spectre.Console/IHasVisibility.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

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; }
}