DefaultBorderColorIndex Property Example
This example changes the default line color and style for borders and then applies a border around the first paragraph in the active document.
ActiveDocument.Paragraphs(1).Borders.Enable = True
With Options
.DefaultBorderColorIndex = wdRed
.DefaultBorderLineStyle = wdLineStyleDouble
End With