彩票走势图

logo Aspose.PDF使用教程
文档彩票走势图>>Aspose.PDF使用教程>>Aspose.Pdf使用教程:删除PDF文件中的指定注释

Aspose.Pdf使用教程:删除PDF文件中的指定注释


Aspose.Pdf从PDF文件中删除指定注释,需要调用[*Annotations*] 集合中的Delete方法,这个集合属于注释存在的页面对象,Delete方法需要被删除注释的指数。之后,保存更新之后的PDF文档。

》》》下载Aspose.Pdf试用版

下面是代码示例:

C#

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

//delete particular annotation
pdfDocument.Pages[1].Annotations.Delete(1);

//save updated document
pdfDocument.Save("output.pdf");

VB.NET

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

'delete particular annotation
pdfDocument.Pages(1).Annotations.Delete(1)

'save updated document
pdfDocument.Save("output.pdf")
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP