Borders.EnableFirstPageInSection Property

Word Developer Reference

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

Syntax

expression.EnableFirstPageInSection

expression   A variable that represents a Borders object.

Example

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

Visual Basic for Applications
  Dim borderLoop As Border

With Selection.Sections(1) .Borders.EnableFirstPageInSection = True .Borders.EnableOtherPagesInSection = False For Each borderLoop In .Borders borderLoop.ArtStyle = wdArtPeople borderLoop.ArtWidth = 15 Next borderLoop End With

See Also