FormEditor.Single2Multiple

FormEditor.Single2Multiple method

Change a single-lined text field to a multiple-lined one.

public bool Single2Multiple(string fieldName)
ParameterTypeDescription
fieldNameStringThe qualified field name.

Return Value

If success, return true;else false.

Examples

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

See Also