我已经使用adobe acrobat dc在我的Pdf表单中添加了一个组合框,我想使用Itextsharp将数据绑定到现有pdf表单的组合框中。
我使用这种方法但没有工作。
acroFields.SetListOption("ddlName", new String[] { "a", "b", "c" }, new String[] { "first", "second", "third" });
acroFields.SetField("ddlName", "a");
在其他情况下,我使用Itextsharp以编程方式将组合框添加到pdf表单并绑定数据并且工作正常。
TextField combobox = new TextField(stamp.Writer, new Rectangle(10, 75, 85, 100), "ddlSignature");
combobox.Choices = signatoryNameList.ToArray();
combobox.ChoiceExports = signaturePathList.ToArray();
combobox.ChoiceSelection = 0;
stamp.AddAnnotation(combobox.GetComboField(), numberOfPages);
有没有办法使用itextsharp将数据绑定到pdf格式的现有组合框。