Break Object

Microsoft Word Visual Basic

Break Object

Breaks Break
Range

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.

Using the Break Object

Use the Item method 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)