2021-12-22 08:51:17 -05:00

19 lines
492 B
C#

namespace Spectre.Console;
/// <summary>
/// Represents something that has a border.
/// </summary>
public interface IHasBorder
{
/// <summary>
/// Gets or sets a value indicating whether or not to use
/// a "safe" border on legacy consoles that might not be able
/// to render non-ASCII characters.
/// </summary>
bool UseSafeBorder { get; set; }
/// <summary>
/// Gets or sets the box style.
/// </summary>
public Style? BorderStyle { get; set; }
}