namespace Spectre.Console { /// /// Represents a column. /// public interface IColumn : IAlignable, IPaddable { /// /// Gets or sets a value indicating whether /// or not wrapping should be prevented. /// bool NoWrap { get; set; } /// /// Gets or sets the width of the column. /// int? Width { get; set; } } }