ComboBoxFormPrBase
Specific combo box / dropdown list properties.
Type
Object
Properties
Name | Type | Description |
---|---|---|
editable | boolean | Specifies if the combo box text can be edited. |
autoFit | boolean | Specifies if the combo box form content should be autofit, i.e. whether the font size adjusts to the size of the fixed size form. |
items | (string | string[])[] |
Example
This example creates a combo box form with the specific combo box form properties.
let comboBoxFormPrBase = {"editable": false, "autoFit": false, "items": ["Latvia", "USA", "UK"]};
let comboBoxForm = Api.CreateComboBoxForm(comboBoxFormPrBase);