FormEditor.DelListItem

FormEditor.DelListItem method

Delete item from the list field.

public void DelListItem(string fieldName, string itemName)
ParameterTypeDescription
fieldNameStringName of the field.
itemNameStringName of the item which must be deleted.

Examples

formEditor = new Aspose.Pdf.Facades.FormEditor("PdfForm.pdf", "FormEditor_DelListItem.pdf");
formEditor.DelListItem("listboxField", "item2");

See Also