TextDecorations.Strikethrough Property
.NET Framework 4.5
Specifies a strikethrough TextDecoration.
Namespace: System.Windows
Assembly: PresentationCore (in PresentationCore.dll)
Property Value
Type: System.Windows.TextDecorationCollectionA value that represents a strikethrough TextDecoration.
In the following example, a strikethrough text decoration is created by using solid color brush for the pen. The Location property is set to Strikethrough.
// Use the default font values for the strikethrough text decoration. private void SetDefaultStrikethrough() { // Set the underline decoration directly to the text block. TextBlock1.TextDecorations = TextDecorations.Strikethrough; }
<!-- Use the default font values for the strikethrough text decoration. --> <TextBlock TextDecorations="Strikethrough" FontSize="36" > The quick red fox </TextBlock>
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
