TextBox.TextDecorations Proprietà

Definizione

Ottiene le decorazioni di testo da applicare alla casella di testo.

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

Valore della proprietà

Un insieme TextDecorationCollection contenente le decorazioni di testo da applicare alla casella di testo. L'impostazione predefinita è null (nessuna decorazione di testo applicata).

Esempio

Nell'esempio seguente viene illustrato come impostare l'attributo TextDecorations usando Run come elemento di esempio.

<FlowDocument ColumnWidth="200">
  <Paragraph>
    <Run TextDecorations="Strikethrough">
      This text will render with the strikethrough effect.
    </Run>
  </Paragraph>
</FlowDocument>

La figura seguente illustra il rendering di questo esempio.

Screenshot: Testo con effetto barrato predefinito Screenshot

Le figure seguenti illustrano rispettivamente il rendering delle OverLinedecorazioni , Baselinee Underline .

Screenshot: TextDecorator overline

Screenshot: effetto di base predefinito sul testo

Screenshot: Testo con effetto di sottolineatura predefinito Screenshot

Nell'esempio seguente viene illustrato come impostare la TextDecorations proprietà a livello di codice.

Run run1 = new Run("This text will render with the strikethrough effect.");
run1.TextDecorations = TextDecorations.Strikethrough;
Dim run1 As New Run("This text will render with the strikethrough effect.")
run1.TextDecorations = TextDecorations.Strikethrough

Commenti

Un TextDecoration oggetto è un ornamento visivo che è possibile aggiungere al testo. Esistono quattro tipi di decorazioni di testo: sottolineatura, linea di base, barratura e overline. Per altre informazioni sulle decorazioni di testo, vedere Procedura: Creare una decorazione di testo.

Informazioni proprietà di dipendenza

Campo Identificatore TextDecorationsProperty
Proprietà dei metadati impostate su true AffectsRender

Si applica a