View.ShowTextBoundaries Property

Word Developer Reference

True if dotted lines are displayed around page margins, text columns, objects, and frames in print layout view. Read/write Boolean.

Syntax

expression.ShowTextBoundaries

expression   An expression that returns a View object.

Example

This example switches the active window to page view and displays text boundary lines.

Visual Basic for Applications
  With ActiveDocument.ActiveWindow.View
    .Type = wdPrintView
    .ShowTextBoundaries = True
End With

See Also