AlwaysInFront Property
Applies To
Borders collection object.
Description
True if page borders are displayed in front of the document text. Read/write Boolean.
See Also
ArtStyle property, ArtWidth 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