Description
Drop-down list for choosing the number of winding layers.
Syntax
JSQtWidgets.createWindingLayersComboBox(parent: widget = null) -> WindingLayersComboBox
 
Parameters
| Parameter | Type | Default Value | Optional | Description | 
| parent | widget | null | ❌ Not | Parent widget to which the created WindingLayersComboBoxbelongs. If not specified, a childless widget is created. | 
Return value
| Type | Description | 
| WindingLayersComboBox | New WindingLayersComboBoxobject. | 
Example
| JS | 
|---|
|  | let result = QtWidgets.createWindingLayersCombo()
console.info(result)
 |