Inline::TextDecorations Property
Gets a TextDecorationCollection that contains text decorations to apply to this element.
Assembly: PresentationFramework (in PresentationFramework.dll)
public: property TextDecorationCollection^ TextDecorations { TextDecorationCollection^ get(); void set(TextDecorationCollection^ value); }
Property Value
Type: System.Windows::TextDecorationCollection^A TextDecorationCollection collection that contains text decorations to apply to this element.
The default value is null (no text decorations applied).
A TextDecoration object is a visual ornamentation you can add to text. There are four types of text decorations: underline, baseline, strikethrough, and overline. For more information about text decorations, see How to: Create a Text Decoration.
Identifier field | |
Metadata properties set to true |
The following example shows how to set the TextDecorations attribute of a Inline element (Run).
<FlowDocument ColumnWidth="200"> <Paragraph> <Run TextDecorations="Strikethrough"> This text will render with the strikethrough effect. </Run> </Paragraph> </FlowDocument>
The following figure shows how this example renders.

The following figures show how the Overline, Baseline, and Underline decorations render, respectively.



The following example shows how to set the TextDecorations property programmatically.
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0