We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Issue is maintaing status history for Comments added to PDF

Hi,

I want to get all comments and complete status of all those comments of a PDF file. Please let me know if it is possible or not.

Thanks,
Neha

8 Replies

NB neha bhardwaj November 29, 2018 03:01 AM UTC

Hi,

Please let me know if it is possible or not.
Thanks,
Neha


KC Karthikeyan Chandrasekar Syncfusion Team November 29, 2018 05:11 AM UTC

Hi Neha, 
Currently it is not possible to achieve your requirement, however we are consulting with our development team for the possible solution. They have already started validating it, we will update you with more details by tomorrow. 

Regards, 
Karthikeyan 



KC Karthikeyan Chandrasekar Syncfusion Team November 30, 2018 11:49 AM UTC

Hi Neha, 
At present we do not have support for retrieving the review status present in the Free text annotation with its contents.  We have created the feature request for the same and we have no immediate plan for implementing this feature. We will let you know once this feature is implemented. 

Regards, 
Karthikeyan 



RP Raymond Phelps December 4, 2018 10:53 AM UTC

Hi I’m a bit confused by what you’re saying?  Are you basically saying you won’t be implementing this feature?  Or you have added it to the queue of items to be developed but can’t give us any indication of when this would happen?  The annotations state is a PDF standard, see picture below.  Unfortunately this is very important in our project and if  your software doesn’t provide this basic feature we will have to look at another vendor.



DB Dilli Babu Nandha Gopal Syncfusion Team December 5, 2018 11:56 AM UTC

Hi Raymond, 

Greetings from Syncfusion. 

As per your request, we have considered to implement the feature to retrieve the Review history present in the Free text annotation from PdfLoadedDocument with all its status and content. This usability feature will be included in our 2019 Volume 1 release which is estimated to be available by March 2019 tentatively.  

Can you please let us know if there is additional requirement other than this with more information so that we will implement the same in our side? also please provide any sample PDF which is used for this parsing process at your end. This information will be helpful for us to provide a feature which fulfills your requirement.  

Please let us know if you need any further information. 

Regards, 
Dilli babu. 



NB neha bhardwaj December 10, 2018 03:08 AM UTC

Hi,


Thanks, for your reply. Can you please test attached file to get comments and review statuses.

Thanks,

Neha


Attachment: Test_c1a9fe7e.zip


KK Karthik Krishnaraj Syncfusion Team December 10, 2018 11:34 AM UTC

Hi Neha,  
  
Thank you for sharing requested input PDF, we will make use of the shared PDF to implement the feature for “Retrieve the review history present in the Free text annotation from PdfLoadedDocument”. As we said earlier we will include this usability feature from our Essential Studio 2019 Volume 1 release. 
 
Regards, 
Karthik. 



DB Dilli Babu Nandha Gopal Syncfusion Team March 14, 2019 06:48 PM UTC

Hi Neha, 
 
We are glad to inform you that Essential Studio 2019 Volume 1 Beta Release v17.1.0.32 is rolled out. Here is the download link.  
 
Feature: Retrieve review status and comments from PDF annotation 
/Load the existing PDF document 
PdfLoadedDocument loadedDocument = new PdfLoadedDocument("input.pdf"); 
  
//Get the existing PDF page 
PdfLoadedPage loadedPage = loadedDocument.Pages[0] as PdfLoadedPage; 
  
//Get the annotation 
PdfLoadedTextMarkupAnnotation loadedMarkup = loadedPage.Annotations[0] as PdfLoadedTextMarkupAnnotation; 
  
//Get the review history collection for the annotation. 
PdfLoadedPopupAnnotationCollection reviewCollection = loadedMarkup.ReviewHistory; 
  
//Get annotation state 
PdfAnnotationState state = reviewCollection[0].State; 
  
//Get annotation state model 
PdfAnnotationStateModel model = reviewCollection[0].StateModel; 
  
//Get the comments of the annotation 
PdfLoadedPopupAnnotationCollection commentsCollection = loadedMarkup.Comments; 
  
//Get the review history of the comment. 
PdfLoadedPopupAnnotationCollection reviewCollection1 = commentsCollection[0].ReviewHistory; 
  
//Close the PDF document. 
loadedDocument.Close(true); 
 
Kindly try our latest version of Essential Studio and let us know if you any other issue.  
 
Regards, 
Dilli babu. 
 
 
 



Loader.
Live Chat Icon For mobile
Up arrow icon