TableCell.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 列舉型別 (Enumeration) 的成員,用來指定需要的對齊方式。
預設值是 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>
下圖顯示上一個範例如何使用 左 文字對齊 (預設) 呈現。
下圖顯示相同的範例如何以 右 文字對齊方式呈現。
快照
下圖顯示相同的範例如何呈現 置中 文字對齊方式。
下列範例示範如何以程式設計方式設定 TextAlignment 屬性。
Paragraph par = new Paragraph();
par.TextAlignment = TextAlignment.Center;
Dim par As New Paragraph()
par.TextAlignment = TextAlignment.Center
備註
相依性屬性資訊
識別碼欄位 | TextAlignmentProperty |
中繼資料屬性設定為 true |
AffectsMeasure, AffectsRender, Inherits |