TextDecoration.Location Eigenschaft

Definition

Ruft die vertikale Position ab, an der die Textdekoration gezeichnet wird, oder legt diese fest.

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

Eigenschaftswert

TextDecorationLocation

Die vertikale Position, an der die Textdekoration gezeichnet wird.

Beispiele

Im folgenden Codebeispiel wird eine durchstrichene Textdeko mit einem vollfarbigen Pinsel für den Stift erstellt. 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 werden die Speicherorte der Text-Dekorationen relativ zum Text dargestellt.

Diagramm der Textergänzungsstellen
Beispiel für Text-Dekorationstypen

Mit der PenOffset Eigenschaft können Sie die Textdeko aus dem angegebenen LocationWert versatzen.

Informationen zur Abhängigkeitseigenschaft

Bezeichnerfeld LocationProperty
Metadateneigenschaften auf true festgelegt Keine

Gilt für