Slides.Paste Method

Pastes the slides on the Clipboard into the Slides collection for the presentation. Specify where you want to insert the slides with the Index argument. Returns a SlideRange object that represents the pasted objects. Each pasted slide becomes a member of the specified Slides collection.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
Function Paste ( _
    Index As Integer _
) As SlideRange
'Usage
Dim instance As Slides
Dim Index As Integer
Dim returnValue As SlideRange

returnValue = instance.Paste(Index)
SlideRange Paste(
    int Index
)

Parameters

  • Index
    Type: System.Int32
    The index number of the slide that the slides on the Clipboard are to be pasted before. If this argument is omitted, the slides on the Clipboard are pasted after the last slide in the presentation.

Return Value

Type: Microsoft.Office.Interop.PowerPoint.SlideRange

Remarks

Use the ViewType property to set the view for a window before pasting the Clipboard contents into it. The following table shows what you can paste into each view.

Into this view

You can paste the following from the Clipboard

Slide view or notes page view

Shapes, text, or entire slides. If you paste a slide from the Clipboard, an image of the slide will be inserted onto the slide, master, or notes page as an embedded object. If one shape is selected, the pasted text will be appended to the shape's text; if text is selected, the pasted text will replace the selection; if anything else is selected, the pasted text will be placed in it is own text frame. Pasted shapes will be added to the top of the z-order and won't replace selected shapes.

Outline view

Text or entire slides. You cannot paste shapes into outline view. A pasted slide will be inserted before the slide that contains the cursor.

Slide sorter view

Entire slides. You cannot paste shapes or text into slide sorter view. A pasted slide will be inserted at the cursor or after the last slide selected in the presentation.

See Also

Reference

Slides Interface

Slides Members

Microsoft.Office.Interop.PowerPoint Namespace