Description
Spinbox for number of slots.
Syntax
JSQtWidgets.createNumberSlotSpinBox(parent: widget = null) -> NumberSlotSpinBox
 
Parameters
| Parameter | Type | Default Value | Mandatory | Description | 
| parent | widget | null | ❌ | Parent widget, to which the created NumberSlotSpinBoxbelongs. If not specified, the widget is created without a parent. | 
Return value
| Type | Description | 
| NumberSlotSpinBox | A new NumberSlotSpinBoxobject. | 
Example
| JS | 
|---|
|  | let result = QtWidgets.createNumberSlotSpinBox();
console.info(result);
 |