aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractspinbox.cpp
blob: ba9686798038dd3cf579d824c1e66e9bb5cc138c (plain)
1
2
3
4
5
6
7
8
//! [0]
spinBox = QSpinBox(self)
spinBox.setRange(0, 100)
spinBox.setWrapping(True)
spinBox.setValue(100)
spinBox.stepBy(1)
// value is 0
//! [0]