mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-26 05:02:50 +08:00
22 lines
387 B
C#
22 lines
387 B
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// Represents vertical overflow.
|
|
/// </summary>
|
|
public enum VerticalOverflow
|
|
{
|
|
/// <summary>
|
|
/// Crop overflow.
|
|
/// </summary>
|
|
Crop = 0,
|
|
|
|
/// <summary>
|
|
/// Add an ellipsis at the end.
|
|
/// </summary>
|
|
Ellipsis = 1,
|
|
|
|
/// <summary>
|
|
/// Do not do anything about overflow.
|
|
/// </summary>
|
|
Visible = 2,
|
|
} |