TextDecorations.Strikethrough Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
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
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.
Beispiel für eine durchgestrichene Textdeko