Paragraph.TextDecorations 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定 TextDecorationCollection,它包含要套用至這個項目的文字裝飾。
public:
property System::Windows::TextDecorationCollection ^ TextDecorations { System::Windows::TextDecorationCollection ^ get(); void set(System::Windows::TextDecorationCollection ^ value); };
public System.Windows.TextDecorationCollection TextDecorations { get; set; }
member this.TextDecorations : System.Windows.TextDecorationCollection with get, set
Public Property TextDecorations As TextDecorationCollection
屬性值
TextDecorationCollection 集合,包含要套用至這個項目的文字裝飾。 null
值表示不會套用文字修飾。 預設值是 null
。
範例
下列範例將示範如何設定 的 屬性。
<FlowDocument ColumnWidth="200">
<Paragraph TextDecorations="Strikethrough">
This text will render with the strikethrough effect.
</Paragraph>
</FlowDocument>
Paragraph parx = new Paragraph(new Run("This text will render with the strikethrough effect."));
parx.TextDecorations = TextDecorations.Strikethrough;
Dim parx As New Paragraph(New Run("This text will render with the strikethrough effect."))
parx.TextDecorations = TextDecorations.Strikethrough
下圖顯示此範例的轉譯方式。
下圖顯示 覆線、 基準 和 底線 裝飾如何分別呈現。
備註
TextDecoration物件是您可以新增至文字的視覺裝飾。 文字裝飾有四種類型:底線、基準、刪除線和超線。 如需文字裝飾的詳細資訊,請參閱 如何:建立文字裝飾。
相依性屬性資訊
識別碼欄位 | TextDecorationsProperty |
設定為 的中繼資料屬性 true |
AffectsRender |