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