Reputation: 21
Does interop have a way to change the view of a PowerPoint presentation to notes pages? I'm building an application to automatically convert a large amount of pptx files to pdf and would much prefer the pdf's to be in note page view but I can't seem to find anything in the documentation for doing so? If interop doesn't support this, does anyone know another api with this function?
Upvotes: 0
Views: 122
Reputation: 14809
Have a look here. It's specific to VBA but the parameters should be the same, I think.
You'd want to specify PpPrintOutputType
and set it to ppPrintOutputNotesPages
(a PowerPoint constant equal to 5)
Upvotes: 0