mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2026-01-02 01:03:32 +01:00
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; }
|
|
}
|
|
}
|