FormEditor.Items

FormEditor.Items property

Sets items which will be added t onewly created list box or combo box.

formEditor = new Aspose.Pdf.Facades.FormEditor("input.pdf", "output.pdf");
formEditor.Items = new string[] { "AAA", "BBB", "CCC" };
formEditor.AddField(FieldType.ListBox, "AddedListBoxField", "BBB", 1, 10, 30, 110, 130);
formEditor.Save();
public string[] Items { get; set; }

See Also