Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
If you want to move a form field to a new location then you can use MoveField method of FormEditor class. You only need to provide the field name and new location of this field to the MoveField method. You also need to save the updated PDF file using Save method of FormEditor class. The following code snippet shows you how to move a form field in a new location in a PDF file.
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void MoveField()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Forms();
using (var editor = new Aspose.Pdf.Facades.FormEditor())
{
// Bind PDF document
editor.BindPdf(dataDir + "MoveField.pdf");
editor.MoveField("textbox1", 262.56f, 496.75f, 382.28f, 514.03f);
// Save PDF document
editor.Save(dataDir + "MoveField_out.pdf");
}
}
In order to delete a form field from an existing PDF file, you can use RemoveField method of FormEditor class. This method takes only one argument: field name. You need to create an object of FormEditor class, call RemoveField method to remove a particular field from the PDF and then call the Save method to save the updated PDF file. The following code snippet shows you how to delete form fields from an existing PDF file.
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void RemoveFields()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Forms();
using (var editor = new Aspose.Pdf.Facades.FormEditor())
{
// Bind PDF document
editor.BindPdf(dataDir + "ModifyFormField.pdf");
editor.RemoveField("textbox1");
// Save PDF document
editor.Save(dataDir + "RemoveField_out.pdf");
}
}
Also you can rename your field using RenameField method of FormEditor class.
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void RenameFields()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Forms();
using (var editor = new Aspose.Pdf.Facades.FormEditor())
{
// Bind PDF document
editor.BindPdf(dataDir + "ModifyFormField.pdf");
editor.RenameField("textbox1", "FirstName");
// Save PDF document
editor.Save(dataDir + "RenameField_out.pdf");
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.