Class PresentationMerger
- Namespace
- Slidize
- Assembly
- Slidize.Plugins.dll
Plugin for merging PowerPoint files of the same format into one file.
public static class PresentationMerger
- Inheritance
-
PresentationMerger
- Inherited Members
Methods
Process(string[], string)
Merges the PowerPoint files from the array into one file.
public static void Process(string[] inputFileNames, string outputFileName)
Parameters
inputFileNames
string[]Array of the input presentation file names.
outputFileName
stringThe output file name.
Examples
PresentationMerger.Process(new string[]{ "pres1.pptx", "pres2.pptx" }, "merged.pptx");