TextDecorations.Strikethrough Eigenschaft

Definition

Gibt eine TextDecoration für durchgestrichenen Text an.

public:
 static property System::Windows::TextDecorationCollection ^ Strikethrough { System::Windows::TextDecorationCollection ^ get(); };
public static System.Windows.TextDecorationCollection Strikethrough { get; }
member this.Strikethrough : System.Windows.TextDecorationCollection
Public Shared ReadOnly Property Strikethrough As TextDecorationCollection

Eigenschaftswert

TextDecorationCollection

Ein Wert, der eine TextDecoration für durchgestrichenen Text darstellt.

Beispiele

Im folgenden Beispiel wird eine durchschlagete Textdeko erstellt, indem sie einen Solid-Color-Pinsel für den Stift verwendet. Die Location-Eigenschaft ist auf Strikethrough festgelegt.

// 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.
Private Sub SetDefaultStrikethrough()
    ' Set the underline decoration directly to the text block.
    TextBlock1.TextDecorations = TextDecorations.Strikethrough
End Sub
<!-- Use the default font values for the strikethrough text decoration. -->
<TextBlock
  TextDecorations="Strikethrough"
  FontSize="36" >
  The quick red fox
</TextBlock>

Hinweise

Im folgenden Beispiel wird die Position einer durchgestrichenen Textdeko relativ zum Text dargestellt.

Diagramm der Textergänzungsstellen
Beispiel für eine durchgestrichene Textdeko

Gilt für