RichTextBlock.Padding Property

Definition

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.

C#
public Thickness Padding { get; set; }
XAML
<RichTextBlock Padding="uniform"/>
- or -
<RichTextBlock Padding="left&Right,top&Bottom"/>
- or -
<RichTextBlock Padding="left,top,right,bottom"/>

Property Value

A Thickness 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.

Applies to

Product Versions
Windows App SDK 0.8, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6

See also