How can I set defaults Solid Line in Word

RyanGarner-4449 0 Reputation points
2023-06-15T15:24:21.6666667+00:00

How can I set defaults for the color and width for a solid line in the Fill and line in the Format Picture in Word?

User's image

Microsoft 365 and Office | Word | For business | Windows
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. John Korchok 6,786 Reputation points Volunteer Moderator
    2023-06-15T15:57:27.2433333+00:00

    There's nothing built into Word to create your own picture border styles. However, you can write a macro like this:

    Sub FormatPictureBorder()
        With Selection
            .Borders.OutsideLineStyle = wdLineStyleSingle
            .Borders.OutsideColor = RGB(255, 0, 0)
            .Borders.OutsideLineWidth = wdLineWidth225pt
        End With
    End Sub
    

    Then you can give that macro a keyboard shortcut and/or add it to the Quick Access Toolbar to make it convenient to use.

    1 person found this answer helpful.

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.