WrapToWindow Property

Applies To

View object.

Description

True if lines wrap at the right edge of the document window rather than at the right margin or the right column boundary. Read/write Boolean.

Note This property has no effect in page layout or online layout view.

See Also

BrowseToWindow property, View property.

Example

This example wraps the text to fit within the active window.

With ActiveWindow.View
    .Type = wdNormalView
    .WrapToWindow = True
End With