Description
Choose the stator type.
Syntax
JSQtWidgets.createStatorTypeComboBox(parent: widget = null) -> StatorTypeComboBox
 
Parameters
| Parameter | Type | Default Value | Mandatory | Description | 
| parent | widget | null | ❌ Нет | Parent widget to which the created StatorTypeComboBox belongs. If not specified, a childless widget is created. | 
Return value
| Type | Description | 
| StatorTypeComboBox | New StatorTypeComboBox object. | 
Example
| JS | 
|---|
|  | let result = QtWidgets.createStatorTypeComboBox()
console.info(result)
 |