Paragraph.TextIndent 属性

定义

获取或设置段落中第一行文本的缩进(以像素为单位)。

public:
 property double TextIndent { double get(); void set(double value); };
double TextIndent();

void TextIndent(double value);
public double TextIndent { get; set; }
var double = paragraph.textIndent;
paragraph.textIndent = double;
Public Property TextIndent As Double
<Paragraph TextIndent="double"/>

属性值

Double

double

段落中第一行文本的偏移量(以像素为单位)。

注解

可以通过设置 RichTextBlock.TextIndent 属性来设置 RichTextBlock 中所有段落的缩进量。 可以通过将 Paragraph.TextIndent 属性设置为其他值来替代 RichTextBlock 中特定段落的此设置。

适用于

另请参阅