Range.CopyAsPicture (Word)
The CopyAsPicture method works the same way as the Copy method.
Sub CopyPasteAsPicture()
With ActiveDocument.Range
.CopyAsPicture
.Collapse Direction:=wdCollapseEnd
.PasteSpecial DataType:=wdPasteMetafilePicture
End With
End Sub