Options.DefaultBorderColorIndex Property

Word Developer Reference

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

Syntax

expression.DefaultBorderColorIndex

expression   Required. A variable that represents an Options collection.

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.

Visual Basic for Applications
  ActiveDocument.Paragraphs(1).Borders.Enable = True
With Options
    .DefaultBorderColorIndex = wdRed
    .DefaultBorderLineStyle = wdLineStyleDouble
End With

See Also