TextDecorationLocation Enumeración

Definición

Especifica la posición vertical de un objeto TextDecoration.

public enum class TextDecorationLocation
public enum TextDecorationLocation
type TextDecorationLocation = 
Public Enum TextDecorationLocation
Herencia
TextDecorationLocation

Campos

Baseline 3

Posición vertical de una línea base.

OverLine 1

Posición vertical de una línea alta.

Strikethrough 2

Posición vertical de un tachado.

Underline 0

Posición vertical de un subrayado. Este es el valor predeterminado.

Ejemplos

En el ejemplo siguiente se crea una decoración de texto de subrayado y se usa un pincel de color sólido para el lápiz.

// Use a Red pen for the underline text decoration.
private void SetRedUnderline()
{
    // Create an underline text decoration. Default is underline.
    TextDecoration myUnderline = new TextDecoration();

    // Create a solid color brush pen for the text decoration.
    myUnderline.Pen = new Pen(Brushes.Red, 1);
    myUnderline.PenThicknessUnit = TextDecorationUnit.FontRecommended;

    // Set the underline decoration to a TextDecorationCollection and add it to the text block.
    TextDecorationCollection myCollection = new TextDecorationCollection();
    myCollection.Add(myUnderline);
    TextBlock2.TextDecorations = myCollection;
}
' Use a Red pen for the underline text decoration.
Private Sub SetRedUnderline()
    ' Create an underline text decoration. Default is underline.
    Dim myUnderline As New TextDecoration()

    ' Create a solid color brush pen for the text decoration.
    myUnderline.Pen = New Pen(Brushes.Red, 1)
    myUnderline.PenThicknessUnit = TextDecorationUnit.FontRecommended

    ' Set the underline decoration to a TextDecorationCollection and add it to the text block.
    Dim myCollection As New TextDecorationCollection()
    myCollection.Add(myUnderline)
    TextBlock2.TextDecorations = myCollection
End Sub
<!-- Use a Red pen for the underline text decoration -->
<TextBlock
  FontSize="36" >
  jumps over
  <TextBlock.TextDecorations>
    <TextDecorationCollection>
      <TextDecoration 
        PenThicknessUnit="FontRecommended">
        <TextDecoration.Pen>
          <Pen Brush="Red" Thickness="1" />
        </TextDecoration.Pen>
      </TextDecoration>
    </TextDecorationCollection>
  </TextBlock.TextDecorations>
</TextBlock>

Comentarios

Las decoraciones de texto están disponibles en cuatro tipos: línea base, sobrelínea, tachado y subrayado. En el ejemplo siguiente se muestran las ubicaciones de las decoraciones de texto relativas al texto.

Diagrama de ubicaciones de decoración de texto Diagrama
Tipos de decoración de texto

Se aplica a