Share via


Table.AllowPageBreaks Property

Word Developer Reference

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

Syntax

expression.AllowPageBreaks

expression   Required. A variable that represents a Table object.

Example

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

Visual Basic for Applications
  Sub BreakRow()
    ActiveDocument.Tables(2).AllowPageBreaks = True
End Sub

See Also