Padder
LayoutAdds 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| Name | Type | Default | Description |
|---|---|---|---|
Common | |||
ChildContent | RenderFragment | — | Content to which padding will be applied. |
Other | |||
Padding | Padding | — | Padding 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. |