Description
Selection of pole arrangement.
Syntax
JSQtWidgets.createPoleArrangementComboBox(parent: widget = null) -> PoleArrangementComboBox
 
Parameters
| Parameter | Type | Default Value | Mandatory | Description | 
| parent | widget | null | ❌ No | Parent widget to which the created QComboBoxbelongs. If not specified, the widget is created without a parent. | 
Return value
| Type | Description | 
| PoleArrangementComboBox | New PoleArrangementComboBoxobject. | 
Example
| JS | 
|---|
|  | let result = QtWidgets.createPoleArrangementComboBox()
console.info(result)
 |