TextDecoration.Location Свойство

Определение

Получает или задает вертикальное расположение, по которому будет использовано оформление текста.

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

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

TextDecorationLocation

Вертикальное расположение, по которому будет использовано оформление текста.

Примеры

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

Комментарии

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

Схема расположений украшений текста
Пример типов оформления текста

Свойство PenOffset позволяет смещать оформление текста от указанного Location.

Сведения о свойстве зависимостей

Поле идентификатора LocationProperty
Для свойств метаданных задано значение true Нет

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