ShowDrawings Property

Microsoft Word Visual Basic

ShowDrawings Property

       

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

expression.ShowDrawings

expression   Required. An expression that returns a View object.

Example

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

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