mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-19 10:12:50 +08: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; }
|
|
}
|
|
}
|