在一个windows商店应用程序项目中,我将同步用于WinRT库
我有这段代码来向pdf页面添加注释。
....
var page = pdfDocument.Pages[pagn];
....
string pdfAnnotationMsg = "Test Annotation 123";
PdfPopupAnnotation popupAnnotation = new PdfPopupAnnotation(new RectangleF((float)x, (pageHeight * 1.325f) - (float)y - VertOff2, 5, 5), pdfAnnotationMsg);
popupAnnotation.Border.Width = 1;
popupAnnotation.Open = false;
popupAnnotation.Border.HorizontalRadius = 1;
popupAnnotation.Border.VerticalRadius = 1;
popupAnnotation.Icon = PdfPopupIcon.Comment;
page.Annotations.Add(popupAnnotation);
注释被正确添加,但现在im试图访问它的内容和位置。
我有一个变量:
PdfLoadedAnnotationCollection annotationCollection = pdfDocument.Pages[0].Annotations;
它的计数号显示批注的正确数量,但是如果我使用
annotationCollection[0].Text
我得到以下例外:
“System.NullReferenceException类型的第一次例外发生在Syncfusion.Pdf.WinRT.DLL”异常
如何正确地从不同的注释中获取文本和位置?
发布于 2015-05-05 21:25:51
注释只在保存PDF文档后添加,请在加载注释集合之前保存PDF文档。我已经附上了代码片段供您参考。
var page = doc.Pages[pagn];
string pdfAnnotationMsg = "Test Annotation 123";
PdfPopupAnnotation popupAnnotation = new PdfPopupAnnotation(new RectangleF((float)x, (pageHeight * 1.325f) - (float)y - VertOff2, 5, 5), pdfAnnotationMsg);
popupAnnotation.Border.Width = 1;
popupAnnotation.Open = false;
popupAnnotation.Border.HorizontalRadius = 1;
popupAnnotation.Border.VerticalRadius = 1;
popupAnnotation.Icon = PdfPopupIcon.Comment;
page.Annotations.Add(popupAnnotation);
//Save the PDF document
MemoryStream ms=new MemoryStream();
doc.Save(ms);
doc.Close(true);
//Load the PDF document again
doc = new PdfLoadedDocument(ms);
PdfLoadedAnnotationCollection annotationCollection = doc.Pages[0].Annotations;
var text = annotationCollection[0].Text;
如果您有任何问题,请告诉我们。
https://stackoverflow.com/questions/29828468
复制相似问题