mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-23 19:52:50 +08:00
20 lines
470 B
C#
20 lines
470 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; }
|
|
}
|
|
}
|