summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/src_gui_widgets_qabstractspinbox.cpp
blob: 67cfeb77a2ab2be97b277b26d720d99ef3fa7984 (plain)
1
2
3
4
5
6
7
8
//! [0]
QSpinBox *spinBox = new QSpinBox(this);
spinBox->setRange(0, 100);
spinBox->setWrapping(true);
spinBox->setValue(100);
spinBox->stepBy(1);
// value is 0
//! [0]