Share via


Range.Copy Method (Word)

Copies the specified range to the Clipboard.

Syntax

expression .Copy

expression Required. A variable that represents a Range object.

Example

This example copies the first paragraph in the active document and pastes it at the end of the document.

ActiveDocument.Paragraphs(1).Range.Copy 
Set myRange = ActiveDocument.Range _ 
 (Start:=ActiveDocument.Content.End - 1, _ 
 End:=ActiveDocument.Content.End - 1) 
myRange.Paste

See Also

Concepts

Range Object Members

Range Object