Clears the current form.
This method doesn't have any parameters.
builder.CreateFile("docx"); var oDocument = Api.GetDocument(); var oComboBoxForm = Api.CreateComboBoxForm({"key": "Personal information", "tip": "Choose your country", "required": true, "placeholder": "Country", "editable": false, "autoFit": false, "items": ["Latvia", "USA", "UK"]}); var oParagraph = oDocument.GetElement(0); oParagraph.AddElement(oComboBoxForm); oComboBoxForm.SetText("John Smith"); oComboBoxForm.Clear(); oParagraph = Api.CreateParagraph(); oParagraph.AddText("The first form from this document was cleared."); oDocument.Push(oParagraph); builder.SaveFile("docx", "Clear.docx"); builder.CloseFile();