Sets the border color to the current form.
Name | Type | Description |
r | byte | Red color component value. |
g | byte | Green color component value. |
b | byte | Blue color component value. |
bNone | boolean | Defines that border color will not be set. |
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.SetBorderColor(255, 111, 61); builder.SaveFile("docx", "SetBorderColor.docx"); builder.CloseFile();