Viewing Annotations (Stick Notes) on screen

If you are a C/C++/C# developer and have any questions about using our products from your application here is the place to post them.
Post Reply
craigb
Posts: 5
Joined: Tue Jan 09 2007

Viewing Annotations (Stick Notes) on screen

Post by craigb »

Hi

I am using C#.

I have loaded a PDF document it the PDF Creator control using the below code. The file that I am loading contains annotations, however they are not visible on screen? I have used the Annotate Report State, is there something else I need to do???

--------------------------------------------------------


FileStream docstream = new FileStream("C:\\PDFFolder\\testoutput.pdf", FileMode.Open);
pdfCreator1.Document.Open(docstream, "");
pdfCreator1.Document.ZoomFactor = 40;
pdfCreator1.Document.ReportState = IacReportState.acReportStateAnnotate;
Post Reply