Description
Creates a dropdown list.
Syntax
JSQtWidgets.createWireSwgComboBox(parent: widget = null) -> WireSwgComboBox
 
Parameters
| Parameter | Type | Default Value | Required | Description | 
| parent | widget | null | ❌ Нет | Parent widget to which the created WireSwgComboBoxbelongs. If not specified, the widget is created without a parent. | 
Return value
| Type | Description | 
| WireSwgComboBox | New WireSwgComboBoxobject. | 
Example
| JS | 
|---|
|  | let result = QtWidgets.createWireSwgComboBox()
console.info(result)
 |