title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Range.Paste method (Word) |
vbawd10.chm157155449 |
|
|
06621016-de31-c61b-a9d0-6544b2d7e0a4 |
06/08/2017 |
medium |
Inserts the contents of the Clipboard at the specified range.
expression.Paste
expression Required. A variable that represents a Range object.
If you don't want to replace the contents of the range, use the Collapse method before using this method.
When you use this method with a Range object, the range expands to include the contents of the Clipboard.
This example copies and pastes the first table in the active document into a new document.
If ActiveDocument.Tables.Count >= 1 Then
ActiveDocument.Tables(1).Range.Copy
Documents.Add.Content.Paste
End If
This example copies the selection and pastes it at the end of the document.
If Selection.Type <> wdSelectionIP Then
Selection.Copy
Set Range2 = ActiveDocument.Content
Range2.Collapse Direction:=wdCollapseEnd
Range2.Paste
End If
[!includeSupport and feedback]