PdfDocumentProcessor.RemoveFormField(String) Method
Removes an interactive form field from a document using the field name.
Namespace: DevExpress.Pdf
Assembly: DevExpress.Docs.v24.1.dll
NuGet Package: DevExpress.Document.Processor
Declaration
Parameters
Name | Type | Description |
---|---|---|
name | String | A String which specifies the name of a form field. |
Returns
Type | Description |
---|---|
Boolean | If the form field was removed from a PDF document, the value is true; otherwise, false. |
Remarks
The RemoveFormField method tries to find the field in a document using the field name. If this field is found in the document, then it will be removed from a document and this method returns true; otherwise, it returns false.
Example
This example shows how to remove a particular form field and a whole interactive form from a PDF document.
To remove all form fields from a document, call the PdfDocumentProcessor.RemoveForm method.
If the interactive form is removed successfully, this method returns true. If the document doesn’t contain an interactive form that should be removed, this method returns false.
To remove a particular form field by its name, call the PdfDocumentProcessor.RemoveFormField
method and pass a field name as an argument to this method.
The PdfDocumentProcessor.RemoveFormField
method tries to find the field in a document using the field name. If this field is found in the document, then it will be removed from a document and this method returns true; otherwise, it returns false.
using DevExpress.Pdf;
using System;
namespace RemoveInteractiveForm {
class Program {
static void Main(string[] args) {
using (PdfDocumentProcessor processor = new PdfDocumentProcessor()) {
// Load a document with an interactive form.
processor.LoadDocument("..\\..\\InteractiveForm.pdf");
// Remove a form field by its name.
if (processor.RemoveFormField("FirstName"))
// Save the modified document.
processor.SaveDocument("..\\..\\Result1.pdf");
else
// Show a message if the form field was not found in a document.
Console.WriteLine("The form field was not removed from a document. Make sure, the form field exists in the document.");
// Remove the whole interactive form.
if (processor.RemoveForm())
// Save the modified document.
processor.SaveDocument("..\\..\\Result2.pdf");
else
// Show a message if the interactive form was not found in a document.
Console.WriteLine("The interactive form was not removed from a document. Make sure the interactive form exists in the document.");
}
}
}
}
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the RemoveFormField(String) method.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.