Partilhar via


TextDecorations.Strikethrough Propriedade

Definição

Especifica um tachado TextDecoration.

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

Valor da propriedade

TextDecorationCollection

Um valor que representa um tachado TextDecoration.

Exemplos

No exemplo a seguir, uma decoração de texto com tachado é criada usando um pincel de cor sólida para a caneta. A propriedade Location está definida como 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>

Comentários

O exemplo a seguir mostra o local de uma decoração de texto em tachado em relação ao texto.

Diagrama de locais de decoração de texto
Exemplo de uma decoração de texto com tachado

Aplica-se a