Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.89 KB

richtextblock_padding.md

File metadata and controls

42 lines (31 loc) · 1.89 KB
-api-id -api-type
P:Windows.UI.Xaml.Controls.RichTextBlock.Padding
winrt property

Windows.UI.Xaml.Controls.RichTextBlock.Padding

-description

Gets or sets a value that indicates the thickness of padding space between the boundaries of the content area and the content displayed by a RichTextBlock.

-xaml-syntax

<RichTextBlock Padding="uniform"/>
- or -
<RichTextBlock Padding="left&Right,top&Bottom"/>
- or -
<RichTextBlock Padding="left,top,right,bottom"/>

-xaml-values

uniform
uniform A value that specifies a uniform Thickness. The uniform value is applied to all four Thickness member values (Left, Top, Right, Bottom).
left&Right
left&Right A value that specifies the Left and Right of a symmetrical Thickness.
top&Bottom
top&Bottom A value that specifies the Top and Bottom of a symmetrical Thickness.
left right top bottom
left right top bottom Values that specify the four possible dimension properties of a Thickness structure (Left, Top, Right, Bottom).
## -property-value A [Thickness](../windows.ui.xaml/thickness.md) structure that specifies the amount of padding to apply.

-remarks

A related property is Margin (a property of FrameworkElement). For more info about the relationship between margin and padding, see Alignment, margin, and padding or Define layouts with XAML.

-examples

-see-also

Thickness, RichTextBlockOverflow.Padding, Alignment, margin, and padding