Inline.TextDecorations Property
Gets a TextDecorationCollection that contains text decorations to apply to this element. This is a dependency property.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
'Declaration Public Property TextDecorations As TextDecorationCollection 'Usage Dim instance As Inline Dim value As TextDecorationCollection value = instance.TextDecorations instance.TextDecorations = value
<object> <object.TextDecorations> <TextDecorationCollection .../> </object.TextDecorations> </object>
<object TextDecorations="TextDecorationCollection" .../>
Property Value
Type: System.Windows.TextDecorationCollectionA 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.
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.
Run run1 = new Run("This text will render with the strikethrough effect."); run1.TextDecorations = TextDecorations.Strikethrough;
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.