Description
Selection of rotor type.
Syntax
JSQtWidgets.createRotorTypeComboBox(parent: widget = null) -> RotorTypeComboBox
 
Parameters
| Parameter | Type | Default Value | Optional | Description | 
| parent | widget | null | No | Parent widget to which the created RotorTypeComboBoxbelongs. If not specified, the created widget is without a parent. | 
Return value
| Type | Description | 
| RotorTypeComboBox | New object of type RotorTypeComboBox. | 
Example
| JS | 
|---|
|  | let result = QtWidgets.createRotorTypeComboBox()
console.info(result)
 |