PySide6.QtWidgets.QSpacerItem¶
- class QSpacerItem¶
The
QSpacerItemclass provides blank space in a layout.Details
Normally, you don’t need to use this class directly. Qt’s built-in layout managers provide the following functions for manipulating empty space in layouts:
Class
Functions
addSpacing(),addStretch(),insertSpacing(),insertStretch()setRowMinimumHeight(),setRowStretch(),setColumnMinimumWidth(),setColumnStretch()See also
Synopsis¶
Methods¶
def
__init__()def
changeSize()def
sizePolicy()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
- __init__(w, h[, hData=QSizePolicy.Minimum[, vData=QSizePolicy.Minimum]])¶
Constructs a spacer item with preferred width
w, preferred heighth, horizontal size policyhPolicyand vertical size policyvPolicy.The default values provide a gap that is able to stretch if nothing else wants the space.
- changeSize(w, h[, hData=QSizePolicy.Minimum[, vData=QSizePolicy.Minimum]])¶
Changes this spacer item to have preferred width
w, preferred heighth, horizontal size policyhPolicyand vertical size policyvPolicy.The default values provide a gap that is able to stretch if nothing else wants the space.
Note that if changeSize() is called after the spacer item has been added to a layout, it is necessary to invalidate the layout in order for the spacer item’s new size to take effect.
See also
invalidate()- sizePolicy()¶
- Return type:
Returns the size policy of this item.