Form.FlattenField

Form.FlattenField method

Flattens a specified field with the fully qualified field name. Any other field will remain unchangable. If the fieldName is invalid, all the fields will remain unchangable.

public void FlattenField(string fieldName)
ParameterTypeDescription
fieldNameStringThe name of the field to be flattened.

Examples

Form form = new Form("PdfForm.pdf");
form.FlattenField("textField");

See Also