Description
A spin box for the number of poles.
Syntax
JSQtWidgets.createNumberPoleSpinBox(parent: widget = null) -> NumberPoleSpinBox
 
Parameters
| Parameter | Type | Default Value | Optional | Description | 
| parent | widget | null | No | The parent widget to which the created NumberPoleSpinBoxbelongs. If not specified, the widget is created without a parent. | 
Return value
| Type | Description | 
| NumberPoleSpinBox | A new NumberPoleSpinBoxobject. | 
Example
| JS | 
|---|
|  | let result = QtWidgets.createNumberPoleSpinBox()
console.info(result)
 |