Skip to content

删除表单域

由于表单继承自注释类,所以删除表单域和删除注释的方法一致。

删除表单域的步骤如下:

  1. 从 CPDFDocument 中获取想要删除表单的页面对象。

  2. 删除表单域。

以下是删除指定文档中第一个注释的示例代码:

C#
CPDFDocument document = CPDFDocument.InitWithFilePath("filePath");
CPDFPage page = document.PageAtIndex(0);

List<CPDFAnnotation>annotList = page.GetAnnotations();
annotList[0].RemoveAnnot();