FormEditor.RenameField

FormEditor.RenameField method

Change name of the field.

public void RenameField(string fieldName, string newFieldName)
ParameterTypeDescription
fieldNameStringOld name of the field.
newFieldNameStringNew name of the field.

Examples

FormEditor formEditor = new FormEditor("PdfForm.pdf", "PdfForm_updated.pdf");
formEditor.RenameField("textField", "textField_Renamed");

See Also