Selection.CopyAsPicture method (Word)

The CopyAsPicture method works the same way as the Copy method.

Syntax

expression. CopyAsPicture

expression Required. A variable that represents a Selection object.

Example

This example copies the contents of the active document as a picture and pastes it as a picture at the end of the document.

Sub CopyPasteAsPicture() 
 ActiveDocument.Content.Select 
 With Selection 
 .CopyAsPicture 
 .Collapse Direction:=wdCollapseEnd 
 .PasteSpecial DataType:=wdPasteMetafilePicture 
 End With 
End Sub

See also

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