This documentation is archived and is not being maintained.
TextDecoration.PenOffset Property
Visual Studio 2008
Gets or sets the text decoration's offset from its Location. This is a dependency property.
Assembly: PresentationCore (in PresentationCore.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
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.
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" />
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: