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

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

Concepts

Options Object Members

Options Object