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 NumberSlotSpinBox belongs. If not specified, the widget is created without a parent. |
Return value
Type |
Description |
NumberSlotSpinBox |
A new NumberSlotSpinBox object. |
Example
JS |
---|
| let result = QtWidgets.createNumberSlotSpinBox();
console.info(result);
|
Last update: 18 August 2025, 14:28