Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 2.35 KB

richtextblockoverflow_padding.md

File metadata and controls

44 lines (32 loc) · 2.35 KB
-api-id -api-type
P:Windows.UI.Xaml.Controls.RichTextBlockOverflow.Padding
winrt property

Windows.UI.Xaml.Controls.RichTextBlockOverflow.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 RichTextBlockOverflow.

-xaml-syntax

<RichTextBlockOverflow Padding="uniform"/>
- or -
<RichTextBlockOverflow Padding="left&Right,top&Bottom"/>
- or -
<RichTextBlockOverflow 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 properties (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

RichTextBlock also has a Padding property, therefore the padding applied to the RichTextBlockOverflow can be different than on the RichTextBlock associated with it. The padding on the overflow won't default to the value from the associated RichTextBlock, so you'll have to set it manually if you want the same padding on each.

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, RichTextBlock, Alignment, margin, and padding