EnableOtherPagesInSection Property

Applies To

Borders collection object.

Description

True if page borders are enabled for all pages in the section except for the first page. Read/write Boolean.

See Also

ApplyPageBordersToAllSections method, EnableFirstPageInSection property.

Example

This example adds a border around each page in the first section in the selection except for the first page.

With Selection.Sections(1)
    .Borders.EnableFirstPageInSection = False
    .Borders.EnableOtherPagesInSection = True
    For Each aBord In .Borders
        aBord.ArtStyle = wdArtBabyRattle
        aBord.ArtWidth = 22
    Next aBord
End With