mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-30 14:52:51 +08:00

* Make things a bit more consistent * Add extension methods to configure things like tables, panels and grids.
15 lines
341 B
C#
15 lines
341 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; }
|
|
}
|
|
}
|