Hi
Sorry for my English:)
I work with pdf file(check appendix) where I make annotation - more or less according to example from knowledge base.
[code]
Dim rectangle As New RectangleF(0, 0, 10, 10)
Dim popupAnnotation As New PdfPopupAnnotation(rectangle, "Test popup annotation")
popupAnnotation.Border.Width = 5
popupAnnotation.Color = Color.Azure
popupAnnotation.Border.HorizontalRadius = 5
popupAnnotation.Border.VerticalRadius = 5
popupAnnotation.Open = True
popupAnnotation.Icon = PdfPopupIcon.Comment
'Adds the annotation to loaded page
document.Pages(0).Annotations.Add(popupAnnotation)
[/code]
The annotation is outside the bound of page(check appendix).
Zero point for first page is from last page (diffrent size of page).
What do I make wrong?
Attachment:
pdfs_ef93e0b9.zip