ExportItems

FormEditor.ExportItems property

Устанавливает параметры для поля со списком с экспортируемыми значениями.

public string[][] ExportItems { get; set; }

Примеры

FormEditor formEditor = new FormEditor("PdfForm.pdf", "PdfForm_Updated.pdf"));
formEditor.ExportItems = new string[][] 
{ 
    new string[] { "1", "Firs" }, 
    new string[] { "2", "Second" }, 
    new string[] { "3", "Third" } 
};
formEditor.AddField(FieldType.ListBox, "AddedListBoxField", "Second", 1, 10, 30, 110, 130);
formEditor.Save();

Смотрите также