namespace Spectre.Console.Rendering;
///
/// Represents different parts of a table.
///
public enum TablePart
{
///
/// The top of a table.
///
Top,
///
/// The separator between the header and the cells.
///
HeaderSeparator,
///
/// The separator between the rows.
///
RowSeparator,
///
/// The separator between the footer and the cells.
///
FooterSeparator,
///
/// The bottom of a table.
///
Bottom,
}