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
。
示例
以下示例演示如何设置 TextDecorations 的 Paragraph 属性。
<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 |