Options.PictureWrapType property (Word)

Sets or returns a WdWrapTypeMerged that indicates how Microsoft Word wraps text around pictures. Read/write.

Syntax

expression. PictureWrapType

expression Required. A variable that represents an Options object.

Remarks

This is a default option setting and affects all pictures inserted unless picture wrapping is individually defined for a picture.

Example

This example sets Word to insert and paste all pictures inline with the text if inline is not already specified.

Sub PicWrap() 
 With Application.Options 
 If .PictureWrapType <> wdWrapMergeInline Then 
 .PictureWrapType = wdWrapMergeInline 
 End If 
 End With 
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.