Shapes.AddPicture (PowerPoint)
Creates a picture from an existing file. Returns a Shape object that represents the new picture.
AddPicture (FileName, LinkToFile, SaveWithDocument, Left, Top, Width, Height)
Dim strFileName As String: strFileName =
Dim shpAddPicture As Shape
Set shpAddPicture = ActiveWindow.Selection.SlideRange(1).Shapes.AddPicture(FileName:=strFileName, LinkToFile:=msoTrue, SaveWithDocument:=msoTrue, Left:=, Top:=)
Arguments
The following arguments are required:
FileName (String) - The file from which the OLE object is to be created.
LinkToFile (Office.MsoTriState) - Determines whether the picture will be linked to the file from which it was created.
SaveWithDocument (Office.MsoTriState) - Determines whether the linked picture will be saved with the document into which it is inserted. This argument must be msoTrue if LinkToFile is msoFalse.
Left (Single) - The position, measured in points, of the left edge of the picture relative to the left edge of the slide.
Top (Single) - The position, measured in points, of the top edge of the picture relative to the top edge of the slide.
Optional arguments
The following arguments are optional
Width (Single) - The width of the picture, measured in points.
Height (Single) - The height of the picture, measured in points.