namespace Spectre.Console;
///
/// Represents text overflow.
///
public enum Overflow
{
///
/// Put any excess characters on the next line.
///
Fold = 0,
///
/// Truncates the text at the end of the line.
///
Crop = 1,
///
/// Truncates the text at the end of the line and
/// also inserts an ellipsis character.
///
Ellipsis = 2,
}