View.ShowDrawings property (Word)

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

Syntax

expression. ShowDrawings

expression 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

See also

View Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.