Slides.InsertFromFile method (PowerPoint)

Inserts slides from a file into a presentation, at the specified location. Returns an Integer that represents the number of slides inserted.

Syntax

expression. InsertFromFile( _FileName_, _Index_, _SlideStart_, _SlideEnd_ )

expression A variable that represents a Slides object.

Parameters

Name Required/Optional Data type Description
FileName Required String The name of the file that contains the slides you want to insert.
Index Required Long The index number of the Slide object in the specified Slides collection you want to insert the new slides after.
SlideStart Optional Long The index number of the first Slide object in the Slides collection in the file denoted by FileName.
SlideEnd Optional Long The index number of the last Slide object in the Slides collection in the file denoted by FileName.

Return value

Integer

Example

This example inserts slides three through six from C:\Ppt\Sales.ppt after slide two in the active presentation.

ActivePresentation.Slides.InsertFromFile _
    "c:\ppt\sales.ppt", 2, 3, 6

See also

Slides 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.