Options.AutoCreateNewDrawings property (Word)

True for Microsoft Word to draw newly created shapes in a drawing canvas. Read/write Boolean.

Syntax

expression. AutoCreateNewDrawings

expression An expression that returns an Options object.

Remarks

The AutoCreateNewDrawings property only affects shapes as they are added from within Word. If shapes are added through Visual Basic for Applications code, they are added as specified in the code regardless of whether this option is set to True or False.

Example

This example sets Word to add newly created shapes directly to the document and not within a drawing canvas.

Sub NewDrawings() 
 Application.Options.AutoCreateNewDrawings = False 
End Sub

See also

Options 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.