mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-07-05 20:18:15 +08:00
18 lines
407 B
C#
18 lines
407 B
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// Represents a column.
|
|
/// </summary>
|
|
public interface IColumn : IAlignable, IPaddable
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether
|
|
/// or not wrapping should be prevented.
|
|
/// </summary>
|
|
bool NoWrap { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the width of the column.
|
|
/// </summary>
|
|
int? Width { get; set; }
|
|
} |