Jon
Jon

Reputation: 1727

C# Print PDF using the Adobe Acrobat 10.0 Type Library

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

Upvotes: 0

Views: 507

Answers (0)

Related Questions