Code Samples - Neevia docuPrinter SDK

Example 6: Convert a PowerPoint document into PDF (docuPrinter PowerPoint Macro) - C# Copy 

Add a reference in your Visual Studio project to docuPrinter library.
To do this:
        a. On the Project menu, click Add Reference;
        b. On the COM tab, locate docuPrinter Library and then click Select;
        c. Click OK in the Add References dialog box to accept your selections.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
   private void button1_Click(object sender, EventArgs e)
   {

       string fileToConvert = @"c:\users\public\test.ppt";

       docuprinter.SDK DPSDK = new docuprinter.SDK();

       DPSDK.DocumentOutputFormat = "PDF";
       DPSDK.DocumentOutputName = "demoPPT";
       DPSDK.DocumentOutputFolder = @"c:\users\public\";

       DPSDK.PDFAutoRotatePage = "PageByPage";

       DPSDK.HideSaveAsWindow = true;
       DPSDK.DefaultAction = 1;
       DPSDK.ApplySettings();

       docuprinter.PowerpointMacro DPPPT = new docuprinter.PowerpointMacro();
       DPPPT.CTransition = true;
       DPPPT.CHBookmarks = true;
       DPPPT.CInternetLink = true;
       DPPPT.CDocInfo = true;
       int RVal =  DPPPT.ConvertDocument( fileToConvert );

       DPPPT = null;
       DPSDK = null;

       if (RVal != 0) {
         MessageBox.Show("Error while converting the document!!!");
       } else {
         MessageBox.Show("Done converting !!!");
       }

   }