TextDecorationUnit Enum

Definition

Specifies the unit type of either a TextDecorationPenOffset or a Pen thickness value.

public enum class TextDecorationUnit
public enum TextDecorationUnit
type TextDecorationUnit = 
Public Enum TextDecorationUnit
Inheritance
TextDecorationUnit

Fields

FontRecommended 0

A unit value that is relative to the font used for the TextDecoration. If the decoration spans multiple fonts, an average recommended value is calculated. This is the default value.

FontRenderingEmSize 1

A unit value that is relative to the em size of the font. The value of the offset or thickness is equal to the offset or thickness value multiplied by the font em size.

Pixel 2

A unit value that is expressed in pixels.

Examples

The following example shows how to set the PenThicknessUnit property to Pixel.

// Move the text decoration lower using pixel value units.
myUnderline.PenOffset = 2;
myUnderline.PenOffsetUnit = TextDecorationUnit.Pixel;
myUnderline.PenThicknessUnit = TextDecorationUnit.Pixel;
' Move the text decoration lower using pixel value units.
myUnderline.PenOffset = 2
myUnderline.PenOffsetUnit = TextDecorationUnit.Pixel
myUnderline.PenThicknessUnit = TextDecorationUnit.Pixel
<!-- Move the text decoration lower using pixel value units. -->
<TextDecoration PenOffset="2" PenOffsetUnit="Pixel" PenThicknessUnit="Pixel" />

Applies to