必备功能
高级功能
智能文档处理
建筑
航空
制造
金融
教育
印刷
政府
医疗
SharePoint
Salesforce
OneDrive
Teams
Make
Zapier
Power Automate
OutSystems
开源可视化 PDF 生成引擎,支持自定义模板,并提供面向开发者的 API,灵活构建文档生成流程。
由于表单继承自注释类,所以删除表单域和删除注释的方法一致。
删除表单域的步骤如下:
从 CPDFDocument 中获取想要删除表单的页面对象。
删除表单域。
以下是删除指定文档中第一个注释的示例代码:
CPDFDocument document = CPDFDocument.InitWithFilePath("filePath"); CPDFPage page = document.PageAtIndex(0); List<CPDFAnnotation>annotList = page.GetAnnotations(); annotList[0].RemoveAnnot();