TextDecorations.Strikethrough Свойство

Определение

Указывает зачеркивание TextDecoration.

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

Значение свойства

Значение, представляющее зачеркивание TextDecoration.

Примеры

В следующем примере зачеркивное оформление текста создается с помощью кисти сплошного цвета для пера. Свойство Location имеет значение 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.
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>

Комментарии

В следующем примере показано расположение зачеркивного оформления текста относительно текста.

Схема расположения оформления текста
Пример зачеркивного оформления текста

Применяется к