彩票走势图

logo Aspose.PDF使用教程
文档彩票走势图>>Aspose.PDF使用教程>>Aspose.Pdf使用教程:从PDF文件中获取注释

Aspose.Pdf使用教程:从PDF文件中获取注释


PDF每页的注释都可以在该页的注释集合中找到,如果要找到某一个特定的注释,就必须先为该注释制定一个索引。

》》》下载Aspose.Pdf试用版

下面的代码片段显示了你如何获得一个特定的注释和它的属性:

C#

//open document
Document pdfDocument = new Document("input.pdf");

//get particular annotation
TextAnnotation textAnnotation = (TextAnnotation)pdfDocument.Pages[1].Annotations[1];
//get annotation properties
Console.WriteLine("Title : {0} ", textAnnotation.Title);
Console.WriteLine("Subject : {0} ", textAnnotation.Subject);
Console.WriteLine("Contents : {0} ", textAnnotation.Contents);

VB.NET

'open document
Dim pdfDocument As New Document("input.pdf")

'get particular annotation
Dim textAnnotation As TextAnnotation = CType(pdfDocument.Pages(1).Annotations(1), TextAnnotation)
'get annotation properties
Console.WriteLine("Title : {0} ", textAnnotation.Title)
Console.WriteLine("Subject : {0} ", textAnnotation.Subject)
Console.WriteLine("Contents : {0} ", textAnnotation.Contents)
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP