EnableFirstPageInSection 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