InsertComboBox

DocumentBuilder.InsertComboBox method

在当前位置插入组合框表单字段。

public FormField InsertComboBox(string name, string[] items, int selectedIndex)
范围类型描述
nameString表单字段的名称。可以是空字符串。超过 20 个字符的值将被截断。
itemsString[]组合框的项目。最多 25 项。
selectedIndexInt32组合框中所选项目的索引。

返回值

刚刚插入的表单字段节点。

评论

如果您为表单字段指定名称,则会自动创建同名的书签。

例子

演示如何将组合框表单字段插入到文档中。

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// 插入一个表单,提示用户从菜单中选择一项。
builder.Write("Pick a fruit: ");
string[] items = { "Apple", "Banana", "Cherry" };
builder.InsertComboBox("DropDown", items, 0);

doc.Save(ArtifactsDir + "DocumentBuilder.InsertComboBox.docx");

展示如何创建表单字段。

DocumentBuilder builder = new DocumentBuilder();

// 表单字段是文档中的对象,用户可以通过提示输入值来与之交互。
// 我们可以使用文档生成器创建它们,下面是两种方法。
// 1 - 基本文本输入:
builder.InsertTextInput("My text input", TextFormFieldType.Regular, 
    "", "Enter your name here", 30);

// 2 - 带有提示文本和一系列可能值的组合框:
string[] items =
{
    "-- Select your favorite footwear --", "Sneakers", "Oxfords", "Flip-flops", "Other"
};

builder.InsertParagraph();
builder.InsertComboBox("My combo box", items, 0);

builder.Document.Save(ArtifactsDir + "DocumentBuilder.CreateForm.docx");

也可以看看