ShowTextBoundaries Property

Microsoft Word Visual Basic

expression.ShowTextBoundaries

expression    Required. An expression that returns a View object.

Example

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

With ActiveDocument.ActiveWindow.View
    .Type = wdPrintView
    .ShowTextBoundaries = True
End With