IOverflowable Interface

Represents something that can overflow.
public interface IOverflowable
Namespace
Spectre.Console
Implementing Types

Properties

abstract Overflow? Overflow
Gets or sets the text overflow strategy.

Extension Methods

T And<IOverflowable>(Action<IOverflowable>)
Performs the specified action on the given object and then returns the object. Useful for fluent testing patterns where additional assertions or operations are chained together in a readable manner.
T Crop<IOverflowable>()
Crops any overflowing text.
T Ellipsis<IOverflowable>()
Crops any overflowing text and adds an ellipsis to the end.
T Fold<IOverflowable>()
Folds any overflowing text.
T Overflow<IOverflowable>(Overflow)
Sets the overflow strategy.