AllowPageBreaks Property

Microsoft Word Visual Basic

AllowPageBreaks Property

       

Allows Microsoft Word to break the specified table across pages. Read/write Boolean.

expression.AllowPageBreaks

expression   Required. An expression that returns one of the objects in the Applies To list.

Example

This example sets the second table in the active document to break across pages.

Sub BreakRow()
    ActiveDocument.Tables(2).AllowPageBreaks = True
End Sub