Description
Creates a combobox.
Syntax
JSQtWidgets.createWireAwgComboBox(parent: widget = null) -> WireAwgComboBox
 
Parameters
| Parameter | Type | Default Value | Mandatory | Description | 
| parent | widget | null | ❌ Нет | The parent widget to which the created WireAwgComboBoxbelongs. If not specified, a childless widget is created. | 
Return value
| Type | Description | 
| !!javascript eWireAwgComboBox | A new WireAwgComboBoxobject. | 
Example
| JS | 
|---|
|  | let result = QtWidgets.createWireAwgComboBox()
console.info(result)
 |