QPageSetupDialog#
The QPageSetupDialog
class provides a configuration dialog for the page-related options on a printer. More…
Synopsis#
Functions#
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
Detailed Description#
On Windows and macOS the page setup dialog is implemented using the native page setup dialogs.
Note that on Windows and macOS custom paper sizes won’t be reflected in the native page setup dialogs. Additionally, custom page margins set on a QPrinter
won’t show in the native macOS page setup dialog.
See also
- class PySide6.QtPrintSupport.QPageSetupDialog(printer[, parent=None])#
PySide6.QtPrintSupport.QPageSetupDialog([parent=None])
- Parameters:
printer –
PySide6.QtPrintSupport.QPrinter
parent –
PySide6.QtWidgets.QWidget
Constructs a page setup dialog that configures printer
with parent
as the parent widget.
Constructs a page setup dialog that configures a default-constructed QPrinter
with parent
as the parent widget.
See also
- PySide6.QtPrintSupport.QPageSetupDialog.exec_()#
- Return type:
int
- PySide6.QtPrintSupport.QPageSetupDialog.open(receiver, member)#
- Parameters:
receiver –
PySide6.QtCore.QObject
member – str
This is an overloaded function.
Opens the dialog and connects its accepted()
signal to the slot specified by receiver
and member
.
The signal will be disconnected from the slot when the dialog is closed.
- PySide6.QtPrintSupport.QPageSetupDialog.printer()#
- Return type:
Returns the printer that was passed to the QPageSetupDialog
constructor.