Padder

Layout

Adds padding around its children.

@using Spectre.Console
@using RazorConsole.Components

<Border>
    <Padder Padding="new Padding(2, 1, 2, 1)">
        <Markup Content="Padded content" />
    </Padder>
</Border>

Parameters

2
NameTypeDefaultDescription
Common
ChildContentRenderFragmentContent to which padding will be applied.
Other
PaddingPaddingPadding to apply as (left, top, right, bottom) in characters. Default is (0, 0, 0, 0). Example: new Padding(2, 1, 2, 1) adds 2 characters horizontally and 1 line vertically.

API