View Single Post
 
Old 10-21-2019, 04:59 AM
Ludo_Soete Ludo_Soete is offline Windows 7 64bit Office 2010
Novice
 
Join Date: Oct 2019
Posts: 2
Ludo_Soete is on a distinguished road
Default

Quote:
Originally Posted by gmayor View Post
Use a paragraph border e.g.

Code:
Sub Macro1()
    Selection.TypeText Text:="titel"
    With Selection.ParagraphFormat.Borders(wdBorderBottom)
        .LineStyle = wdLineStyleSingle
        .LineWidth = wdLineWidth150pt
        .Color = wdColorAutomatic
    End With
End Sub
You may also find Lined Headings useful
Thanks for this fast reply.
Works great.
Reply With Quote