Please help
I need to insert Combo Boxes in our Word 2007 document.
I use such code
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertComboBox("", new String[]{"Row 1", "Row 2", "Row 3"}, 0);
Actual we got (see attach): aspose_combo_box.docx and aspose_combo_box.png. (Combo Box in style Word 2003)
We expect result like (see attach): need_combo_box.docx and need_combo_box.png. (Combo Box in style Word 2007)
We use aspose-words version 10.0.1.
What kind of code I should use to insert ComboBox in style Word 2007, or I need use new version of Aspose.Word 10.6?