mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-19 02:12:49 +08:00
23 lines
471 B
C#
23 lines
471 B
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// Represents text overflow.
|
|
/// </summary>
|
|
public enum Overflow
|
|
{
|
|
/// <summary>
|
|
/// Put any excess characters on the next line.
|
|
/// </summary>
|
|
Fold = 0,
|
|
|
|
/// <summary>
|
|
/// Truncates the text at the end of the line.
|
|
/// </summary>
|
|
Crop = 1,
|
|
|
|
/// <summary>
|
|
/// Truncates the text at the end of the line and
|
|
/// also inserts an ellipsis character.
|
|
/// </summary>
|
|
Ellipsis = 2,
|
|
} |