mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-26 21:22:50 +08:00
27 lines
520 B
C#
27 lines
520 B
C#
namespace Spectre.Console.Rendering;
|
|
|
|
/// <summary>
|
|
/// Represents different parts of a table.
|
|
/// </summary>
|
|
public enum TablePart
|
|
{
|
|
/// <summary>
|
|
/// The top of a table.
|
|
/// </summary>
|
|
Top,
|
|
|
|
/// <summary>
|
|
/// The separator between the header and the cells.
|
|
/// </summary>
|
|
HeaderSeparator,
|
|
|
|
/// <summary>
|
|
/// The separator between the footer and the cells.
|
|
/// </summary>
|
|
FooterSeparator,
|
|
|
|
/// <summary>
|
|
/// The bottom of a table.
|
|
/// </summary>
|
|
Bottom,
|
|
} |