PyQt5 QSpinBox - Getting the frame geometry Last Updated : 28 May, 2020 Comments Improve Suggest changes Like Article Like Report In this article we will see how we can get the frame geometry of the spin box. Frame geometry is the spin box geometry relative to its parent including any window frame. By default, frame geometry of the spin box contains a value that depends on the user's platform and screen geometry. In order to do this we use frameGeometry method with the spin box object. Syntax : font_metrics.frameGeometry() Argument : It takes no argument Return : It returns QRect object Below is the implementation Python3 1== # importing libraries from PyQt5.QtWidgets import * from PyQt5 import QtCore, QtGui from PyQt5.QtGui import * from PyQt5.QtCore import * import sys class Window(QMainWindow): def __init__(self): super().__init__() # setting title self.setWindowTitle("Python ") # setting geometry self.setGeometry(100, 100, 600, 400) # calling method self.UiComponents() # showing all the widgets self.show() # method for widgets def UiComponents(self): # creating spin box self.spin = QSpinBox(self) # setting geometry to spin box self.spin.setGeometry(100, 100, 250, 40) # setting range to the spin box self.spin.setRange(1, 999999) # setting prefix to spin self.spin.setPrefix("PREFIX ") # setting suffix to spin self.spin.setSuffix(" SUFFIX") # setting under line to the font font = self.spin.font() font.setUnderline(True) self.spin.setFont(font) # creating a label label = QLabel(self) # making label multi line label.setWordWrap(True) # setting geometry to the label label.setGeometry(100, 200, 300, 60) # getting the frame geometry f_geometry = self.spin.frameGeometry() # setting text to the label label.setText(str(f_geometry)) # create pyqt5 app App = QApplication(sys.argv) # create the instance of our Window window = Window() # start the app sys.exit(App.exec()) Output : Comment More infoAdvertise with us Next Article PyQt5 QSpinBox - Getting current geometry R rakshitarora Follow Improve Article Tags : Python Python-PyQt Python-gui Python PyQt-SpinBox Practice Tags : python Similar Reads PyQt5 QSpinBox - Getting current geometry In this article we will see how we can get the current geometry of the spin box. Geometry is basically the position as well as the size of the spin box. Setting geometry to the spin box can change its size as well as its position. We use setGeometry method to set or change the geometry of the spin b 2 min read PyQt5 QSpinBox - Getting the frame size In this article we will see how we can get the frame size of the spin box. Frame size is the spin box size relative to its parent including any window frame. By default, frame size of the spin box contains a value that depends on the user's platform and screen geometry. In order to do this we use fr 2 min read PyQt5 QDockWidget â Getting Frame Geometry In this article, we will see how we can get the frame geometry of the QDockWidget. QDockWidget provides the concept of dock widgets, also know as tool palettes or utility windows. Dock windows are secondary windows placed in the dock widget area around the central widget in a QMainWindow(original wi 2 min read PyQt5 QSpinBox - Getting alignment In this article we will see how we can get the alignment of the spin box, by default the spin box text is left aligned although we can change it, there are many alignment available for spin box. In order to get the alignment flag of the spin box we use alignment method. Syntax : spin_box.alignment() 2 min read PyQt5 QSpinBox - Getting the foreground role In this article we will see how we can get the foreground role of the spin box, there are basically two types of roles in spin box one is foreground and the other one is background. The foreground role defines the color from the widget's palette that is used to draw the foreground. If no explicit fo 2 min read PyQt5 QSpinBox - Getting base size In this article we will see how we can set the base size to the spin box, base size is used to calculate a proper spin box size if the spin box defines sizeIncrement. By default, for a newly-created spin box, this property contains a size with zero width and height.In order to set base size we use s 2 min read Like