Description
Creates a combobox for selecting wire size calculation methods.
Syntax
JSQtWidgets.createWireSizeMethodComboBox(parent: widget = null) -> WireSizeMethodComboBox
 
Parameters
| Parameter | Type | Default Value | Mandatory | Description | 
| parent | widget | null | No | Parent widget to which the created WireSizeMethodComboBoxbelongs. If not specified, the widget is created without a parent. | 
Return value
| Type | Description | 
| !!javascript WireSizeMethodComboBox | New WireSizeMethodComboBoxobject. | 
Example
| JS | 
|---|
|  | let result = QtWidgets.createWireSizeMethodComboBox()
console.info(result)
 |