AlwaysInFront Property Example

This example adds a graphical page border in front of text in the first section in the active document.

With ActiveDocument.Sections(1)
    .Borders.AlwaysInFront = True
    For Each aBord In .Borders
        aBord.ArtStyle = wdArtPeople
        aBord.ArtWidth = 15
    Next aBord
End With