Breaks Collection

Word Developer Reference

A collection of page, column, or section breaks in a page. Use the Breaks collection and the related objects and properties to programmatically define page layout in a document.

Remarks

Use the Breaks property to return a Breaks collection. The following example returns the breaks in the first page of the active document.

Visual Basic for Applications
  Dim objBreaks As Breaks

Set objBreaks = ActiveDocument.ActiveWindow _ .Panes(1).Pages(1).Breaks

See Also