RichTextBlock.Padding Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
public:
property Thickness Padding { Thickness get(); void set(Thickness value); };
Thickness Padding();
void Padding(Thickness value);
public Thickness Padding { get; set; }
var thickness = richTextBlock.padding;
richTextBlock.padding = thickness;
Public Property Padding As Thickness
<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.