The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
TextDecoration.PenOffset Property
.NET Framework (current version)
Gets or sets the text decoration's offset from its Location.
Assembly: PresentationCore (in PresentationCore.dll)
A negative value moves the text decoration higher, while a positive value moves the text decoration lower. Use the PenOffsetUnit property to specify how the units of this value are interpreted.
Identifier field | |
Metadata properties set to true | None |
The following code example shows how to set the PenOffset property.
// 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" />
.NET Framework
Available since 3.0
Available since 3.0
Show: