mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-30 14:52:51 +08:00
17 lines
292 B
C#
17 lines
292 B
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// Represent vertical overflow cropping.
|
|
/// </summary>
|
|
public enum VerticalOverflowCropping
|
|
{
|
|
/// <summary>
|
|
/// Crops the top.
|
|
/// </summary>
|
|
Top = 0,
|
|
|
|
/// <summary>
|
|
/// Crops the bottom.
|
|
/// </summary>
|
|
Bottom = 1,
|
|
} |