GetAllItems

GetAllItems() → { Array.<ApiContentControlListEntry> }

Returns a collection of items (the ApiContentControlListEntry objects) of the combo box / dropdown list content control.

Parameters:

This method doesn't have any parameters.

Returns:

Type
Array.<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 aItems = oContentControlList.GetAllItems();
var oParagraph = Api.CreateParagraph();
oParagraph.AddText("The first item from the combo box: " + aItems[0].GetText());
oDocument.Push(oParagraph);
builder.SaveFile("docx", "GetAllItems.docx");
builder.CloseFile();

Resulting document