Break object (Word)
Represents individual page, column, and section breaks in a page. Use the Break object and the related methods and properties for programmatically defining page layout in a document.
Remarks
Use the Item method of the Breaks collection to return a specific Break object. The following example returns the first break in the first page of the active document.
Dim objBreak As Break
Set objBreak = ActiveDocument.ActiveWindow _
.Panes(1).Pages(1).Breaks.Item(1)
Properties
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.