Options.PictureWrapType Property

Word Developer Reference

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.

Visual Basic for Applications
  Sub PicWrap()
    With Application.Options
        If .PictureWrapType <> wdWrapMergeInline Then
            .PictureWrapType = wdWrapMergeInline
        End If
    End With
End Sub

See Also