mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-25 04:32:51 +08:00
14 lines
301 B
C#
14 lines
301 B
C#
namespace Spectre.Console
|
|
{
|
|
/// <summary>
|
|
/// Represents something that can overflow.
|
|
/// </summary>
|
|
public interface IOverflowable
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the text overflow strategy.
|
|
/// </summary>
|
|
Overflow? Overflow { get; set; }
|
|
}
|
|
}
|