2020-10-26 18:15:27 +01:00

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; }
}
}