Paragraph.TextDecorations Propriété

Définition

Obtient ou définit un TextDecorationCollection contenant des décorations de texte à appliquer à cet élément.

public:
 property System::Windows::TextDecorationCollection ^ TextDecorations { System::Windows::TextDecorationCollection ^ get(); void set(System::Windows::TextDecorationCollection ^ value); };
public System.Windows.TextDecorationCollection TextDecorations { get; set; }
member this.TextDecorations : System.Windows.TextDecorationCollection with get, set
Public Property TextDecorations As TextDecorationCollection

Valeur de propriété

TextDecorationCollection

Collection TextDecorationCollection qui contient les ornements de texte à appliquer à l'élément. Une valeur de null veut dire qu'aucune décoration de texte ne sera appliquée. La valeur par défaut est null.

Exemples

L'exemple suivant montre comment définir la propriété TextDecorations d'un Paragraph.

<FlowDocument ColumnWidth="200">
  <Paragraph TextDecorations="Strikethrough">
    This text will render with the strikethrough effect.
  </Paragraph>
</FlowDocument>
Paragraph parx = new Paragraph(new Run("This text will render with the strikethrough effect."));
parx.TextDecorations = TextDecorations.Strikethrough;
Dim parx As New Paragraph(New Run("This text will render with the strikethrough effect."))
parx.TextDecorations = TextDecorations.Strikethrough

La figure suivante montre le rendu de cet exemple.

Capture d'écran : texte avec effet barré par défaut

Les illustrations suivantes montrent le rendu des décorations Overline, Baseline et Souligné , respectivement.

Capture d'écran : Overline TextDecorator

Capture d'écran : effet de la ligne de base par défaut sur le texte

Capture d'écran : texte avec effet souligné par défaut

Remarques

Un TextDecoration objet est un ornement visuel que vous pouvez ajouter au texte. Il existe quatre types de décorations de texte : soulignement, ligne de base, barré et surligne. Pour plus d’informations sur les décorations de texte, consultez Guide pratique pour créer une décoration de texte.

Informations sur les propriétés de dépendance

Champ d’identificateur TextDecorationsProperty
Propriétés de métadonnées définies sur true AffectsRender

S’applique à