namespace Spectre.Console; /// /// Represents vertical overflow. /// public enum VerticalOverflow { /// /// Crop overflow. /// Crop = 0, /// /// Add an ellipsis at the end. /// Ellipsis = 1, /// /// Do not do anything about overflow. /// Visible = 2, }