Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Naming Slide Images on Export in PowerPoint 2007

Tags:

c#

powerpoint

vba

Presentation.Export(filename, "PNG", sizeX, sizeY); creates thumbnail images of all slides in the PowerPoint presentation.

My problem is that the thumbnail filenames change according to the Language of PowerPoint. On an English PowerPoint, the thumbnail files are: "slide1.png", "slide2.png", etc. On Hebrew PowerPoint: שקופית1.png, שקופית2.png, etc.

How can I control the name of each slide on export to PNG?

like image 895
Arie Livshin Avatar asked Nov 05 '22 16:11

Arie Livshin


1 Answers

If you want to control the name of the exported slides, use the Slide.Export method instead with a loop.

like image 197
Todd Main Avatar answered Nov 15 '22 07:11

Todd Main