RichTextBlockOverflow.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 RichTextBlockOverflow.

public:
 property Thickness Padding { Thickness get(); void set(Thickness value); };
Thickness Padding();

void Padding(Thickness value);
public Thickness Padding { get; set; }
var thickness = richTextBlockOverflow.padding;
richTextBlockOverflow.padding = thickness;
Public Property Padding As Thickness
<RichTextBlockOverflow Padding="uniform"/>
- or -
<RichTextBlockOverflow Padding="left&Right,top&Bottom"/>
- or -
<RichTextBlockOverflow Padding="left,top,right,bottom"/>

Property Value

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

Applies to

See also