Click here to Skip to main content
15,923,852 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Every bady help me !
I use Adobe Acrodat SDK 7.0.5 and Adobe Acrodat 7 Standart.
How i can extract bookmark and action from my PDF file .

c# code here

Acrobat.AcroPDBookmark acrPDBookm;

Acrobat.AcroPDDoc pdfDoc;
pdfDoc = (Acrobat.AcroPDDoc)Microsoft.VisualBasic.Interaction.CreateObject("AcroExch.PDDoc", "");
acrPDBookm = (Acrobat.AcroPDBookmark)Microsoft.VisualBasic.Interaction.CreateObject("AcroExch.PDBookmark", "");

pdfDoc.Open("oldUserGuide.pdf");


// this one in more titles
bool ui = acrPDBookm.GetByTitle(pdfDoc, "M10");

// this is true
Posted

1 solution

bobtok wrote:
I use Adobe Acrodat SDK 7.0.5


What does the documentation say about this?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900