ShowFirstLineOnly Property

Applies To

View object.

Description

True if only the first line of body text is shown in outline view. Read/write Boolean.

Note This property generates an error if the view isn't outline view or master document view.

See Also

CollapseOutline method, ShowFormat property.

Example

This example switches the active window to outline view and hides all but the first line of body text.

With ActiveWindow.View
    .Type = wdOutlineView
    .ShowFirstLineOnly = True
End With