Skip to content

FigletVerticalOverflow

Namespace: Hex1b.Widgets

Assembly: Hex1b.dll

Specifies how a handles content that exceeds the available vertical space.

csharp
public enum FigletVerticalOverflow

Fields

Clip

Render the text at its natural full height. Content that exceeds the parent's height is clipped at the bottom by the surrounding layout container, which may leave a partial FIGlet row visible.

Returns: FigletVerticalOverflow

csharp
Clip = 0

Truncate

Drop entire FIGlet rows (each sub-character rows tall) that do not fully fit. Never emits a partial row of glyphs at the bottom.

Returns: FigletVerticalOverflow

csharp
Truncate = 1

Remarks

A FIGfont row consists of sub-character rows. When the parent container is shorter than the rendered height, partial rows of glyphs may appear at the bottom and look broken. drops those partial rows entirely.

Released under the MIT License.