Block.TextAlignment 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置文本内容的水平对齐方式。
public:
property System::Windows::TextAlignment TextAlignment { System::Windows::TextAlignment get(); void set(System::Windows::TextAlignment value); };
public System.Windows.TextAlignment TextAlignment { get; set; }
member this.TextAlignment : System.Windows.TextAlignment with get, set
Public Property TextAlignment As TextAlignment
属性值
TextAlignment 值之一,它指定所需的对齐方式。 默认值为 Left。
示例
以下示例演示如何设置 TextAlignment 元素的 Block 属性。
<FlowDocument>
<Paragraph Background="GhostWhite" TextAlignment="Center">
One<LineBreak/>
two two<LineBreak/>
Three Three Three<LineBreak/>
four four four four<LineBreak/>
Five Five Five Five Five<LineBreak/>
six six six six six six<LineBreak/>
Seven Seven Seven Seven Seven Seven Seven<LineBreak/>
eight eight eight eight eight eight eight eight
</Paragraph>
</FlowDocument>
下图显示了上一示例如何以 Left 文本对齐方式呈现 (默认) 。
下图显示了同一示例如何以 Right 文本对齐方式呈现。
下图显示了同一示例如何以 Center 文本对齐方式呈现。
下面的示例演示如何以编程方式设置 TextAlignment 属性。
Paragraph par = new Paragraph();
par.TextAlignment = TextAlignment.Center;
Dim par As New Paragraph()
par.TextAlignment = TextAlignment.Center
注解
依赖项属性信息
标识符字段 | TextAlignmentProperty |
元数据属性设置为 true |
AffectsMeasure, AffectsRender, Inherits |