Print Page | Close Window

Extract links with coors

Printed From: Debenu Quick PDF Library - PDF SDK Community Forum
Category: For Users of the Library
Forum Name: I need help - I can help
Forum Description: Problems and solutions while programming with the Debenu Quick PDF Library and Debenu PDF Viewer SDK
URL: http://www.quickpdf.org/forum/forum_posts.asp?TID=2412
Printed Date: 14 Dec 25 at 12:31AM
Software Version: Web Wiz Forums 11.01 - http://www.webwizforums.com


Topic: Extract links with coors
Posted By: Error202
Subject: Extract links with coors
Date Posted: 22 Sep 12 at 10:43AM
How can I extract all links from PDF page? 



Replies:
Posted By: AndrewC
Date Posted: 24 Sep 12 at 8:29AM

Using the GetAnnotDblProperty, GetAnnotIntProperty, GetAnnotStrProperty and AnnotationCount functions you can retrieve lots of information about annotations

            for (int i = QP.AnnotationCount(); i >= 1; i--)
            {
                 string s = QP.GetAnnotStrProperty(101);  // AnnotType.
                 string s = QP.GetAnnotStrProperty(102);  // Contents
            }

Andrew.



Print Page | Close Window

Forum Software by Web Wiz Forums® version 11.01 - http://www.webwizforums.com
Copyright ©2001-2014 Web Wiz Ltd. - http://www.webwiz.co.uk