ShowDrawings Property

Applies To

View object.

Description

True if objects created with the drawing tools are displayed in page layout view. Read/write Boolean.

Example

This example switches the active window to page layout view and displays objects created with the drawing tools.

With ActiveWindow.View
    .Type = wdPageView
    .ShowDrawings = True
End With