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