namespace Spectre.Console; /// /// Represent vertical overflow cropping. /// public enum VerticalOverflowCropping { /// /// Crops the top. /// Top = 0, /// /// Crops the bottom. /// Bottom = 1, }