mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-06-20 05:48:14 +08:00
18 lines
377 B
C#
18 lines
377 B
C#
namespace Spectre.Console.Rendering
|
|
{
|
|
/// <summary>
|
|
/// Represents an invisible border.
|
|
/// </summary>
|
|
public sealed class NoBorder : Border
|
|
{
|
|
/// <inheritdoc/>
|
|
public override bool Visible => false;
|
|
|
|
/// <inheritdoc/>
|
|
protected override string GetBoxPart(BorderPart part)
|
|
{
|
|
return " ";
|
|
}
|
|
}
|
|
}
|