Paragraph.TextDecorations 属性

定义

获取或设置一个 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

一个 TextDecorationCollection 集合,它包含应用于此元素的文本修饰。 值为 null 表示不应用任何文本修饰。 默认值是 null

示例

以下示例演示如何设置 TextDecorationsParagraph 属性。

<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

下图显示了此示例的呈现效果。

屏幕快照:具有默认删除线效果的文本

下图分别显示了 “超线”、“ 基线”和 “下划线 ”修饰的呈现方式。

屏幕快照:上划线 TextDecorator

屏幕快照:文本上的默认基线效果

屏幕快照:具有默认下划线效果的文本

注解

对象 TextDecoration 是可以添加到文本的视觉装饰。 有四种类型的文本修饰:下划线、基线、删除线和超行。 有关文本修饰的详细信息,请参阅 如何:创建文本修饰

依赖项属性信息

标识符字段 TextDecorationsProperty
元数据属性设置为 true AffectsRender

适用于