This content has been marked as final.
Show 2 replies
-
1. Re: How to refresh view after deleting annotaion using the cos method
lrosenth Nov 12, 2009 5:58 AM (in response to arvindg007)You need to send Acrobat a notification that you deleted the annotation...
-
2. Re: How to refresh view after deleting annotaion using the cos method
arvindg007 Nov 26, 2009 9:11 PM (in response to lrosenth)Hi,
I am sending following notification but even then it doesn't refresh the page.
PDPageNotifyContentsDidChange(pdPage);
And currently, I am using following workaround to refresh the page
//Refersh the page
AVPageView pageView = AVDocGetPageView (avDoc);
ASFixed zoom = AVPageViewGetZoom (pageView);
ASFixed temp_zoom = zoom + 1;
AVPageViewZoomTo(pageView, AVZoomNoVary, temp_zoom);
AVPageViewZoomTo(pageView, AVZoomNoVary, zoom);
The above workaround works fine in most of the case.
But I want proper method or way to refresh the page.


