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.
TextDecorationLocation Enumeration
Visual Studio 2010
Specifies the vertical position of a TextDecoration object.
Assembly: PresentationCore (in PresentationCore.dll)
The following example creates an underline text decoration and uses a solid color brush for the pen.
' 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" > jumped over <TextBlock.TextDecorations> <TextDecorationCollection> <TextDecoration PenThicknessUnit="FontRecommended"> <TextDecoration.Pen> <Pen Brush="Red" Thickness="1" /> </TextDecoration.Pen> </TextDecoration> </TextDecorationCollection> </TextBlock.TextDecorations> </TextBlock>
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Community Additions
Show:
