FormEditor.RenameField

Método FormEditor.RenameField

Cambiar el nombre del campo.

public void RenameField(string fieldName, string newFieldName)
ParámetroTipoDescripción
fieldNameStringNombre antiguo del campo.
newFieldNameStringNuevo nombre del campo.

Ejemplos

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

Ver También