GetItem

GetItem(nIndex) → { ApiContentControlListEntry }

Returns an item of the combo box / dropdown list content control by the position specified in the request.

Parameters:

Name Type Description
nIndex number

Item position.

Returns:

Type
ApiContentControlListEntry

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
Api.pluginMethod_AddContentControlList(1, [{Display: "Item1_D", Value: "Item1_V"}, {Display: "Item2_D", Value: "Item2_V"}], {"Id": 100, "Tag": "CC_Tag", "Lock": 3});
var aContentControls = oDocument.GetAllContentControls();
var oContentControlList = aContentControls[0].GetDropdownList();
oDocument.AddElement(0, oContentControlList);
var oItem = oContentControlList.GetItem(0);
var oParagraph = Api.CreateParagraph();
oParagraph.AddText("The first item from the combo box: " + oItem.GetText());
oDocument.Push(oParagraph);
builder.SaveFile("docx", "GetItem.docx");
builder.CloseFile();

Resulting document