mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-19 02:12:49 +08:00
27 lines
790 B
C#
27 lines
790 B
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// Represents tree guide lines.
|
|
/// </summary>
|
|
public abstract partial class TreeGuide
|
|
{
|
|
/// <summary>
|
|
/// Gets an <see cref="AsciiTreeGuide"/> instance.
|
|
/// </summary>
|
|
public static TreeGuide Ascii { get; } = new AsciiTreeGuide();
|
|
|
|
/// <summary>
|
|
/// Gets a <see cref="LineTreeGuide"/> instance.
|
|
/// </summary>
|
|
public static TreeGuide Line { get; } = new LineTreeGuide();
|
|
|
|
/// <summary>
|
|
/// Gets a <see cref="DoubleLineTreeGuide"/> instance.
|
|
/// </summary>
|
|
public static TreeGuide DoubleLine { get; } = new DoubleLineTreeGuide();
|
|
|
|
/// <summary>
|
|
/// Gets a <see cref="BoldLineTreeGuide"/> instance.
|
|
/// </summary>
|
|
public static TreeGuide BoldLine { get; } = new BoldLineTreeGuide();
|
|
} |