Selection.Copy method (Word)

Copies the specified selection to the Clipboard.

Syntax

expression.Copy

expression Required. A variable that represents a Selection object.

Example

This example copies the contents of the selection into a new document.

If Selection.Type = wdSelectionNormal Then 
 Selection.Copy 
 Documents.Add.Content.Paste 
End If

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.