Options.DefaultBorderColorIndex property (Word)

Returns or sets the default line color for borders. Read/write WdColorIndex.

Syntax

expression. DefaultBorderColorIndex

expression Required. A variable that represents an Options object.

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

See also

Options Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.