mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2025-12-27 00:08:02 +01:00
12 lines
258 B
C#
12 lines
258 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; }
|
|
} |