EnableFirstPageInSection Property
Applies To
Borders collection object.
Description
True if page borders are enabled for the first page in the section. Read/write Boolean.
See Also
ApplyPageBordersToAllSections method, EnableOtherPagesInSection property.
Example
This example adds a border around the first page in the first section in the selection.
With Selection.Sections(1)
.Borders.EnableFirstPageInSection = True
.Borders.EnableOtherPagesInSection = False
For Each aBord In .Borders
aBord.ArtStyle = wdArtPeople
aBord.ArtWidth = 15
Next aBord
End With