QDoubleSpinBox is a widget in the QtWidgets module of the PyQt5 framework for Python. It is a specialized input field that allows the user to input and adjust double precision floating-point numbers. The widget provides a spin box control, allowing the user to increment or decrement the value using arrow buttons or by typing directly into the field. It also allows customization of various properties like minimum and maximum values, step size, and precision of displayed and input values. QDoubleSpinBox is commonly used in applications that require precise numerical input, such as financial or scientific calculations.
Python QtWidgets.QDoubleSpinBox - 2 examples found. These are the top rated real world Python examples of qt.QtWidgets.QDoubleSpinBox extracted from open source projects. You can rate examples to help us improve the quality of examples.