C# Print PDF using the Adobe Acrobat 10.0 Type Library

388 Views Asked by At

I'm using the Adobe Acrobat 10.0 Type Library. I would like to print the PDF to a new file and specify the output file and location.

I have the following code. But don't see a Print method on the AcroPDDoc object.

    Acrobat.AcroApp app = new AcroApp();
   
    AcroPDDoc doc = new AcroPDDoc();

    doc.Open("C:\\Temp\\MyPDF.pdf");

    doc. PRINT ??????   HOW? 

And how can I specify the output file?

thx in advance

0

There are 0 best solutions below