QPrinterInfoclass gives access to information about existing printers. 更多 …
def
defaultColorMode
()
def
defaultDuplexMode
()
def
defaultPageSize
()
def
description
()
def
isDefault
()
def
isNull
()
def
isRemote
()
def
location
()
def
makeAndModel
()
def
maximumPhysicalPageSize
()
def
minimumPhysicalPageSize
()
def
printerName
()
def
state
()
def
supportedColorModes
()
def
supportedDuplexModes
()
def
supportedPageSizes
()
def
supportedPaperSizes
()
def
supportedResolutions
()
def
supportedSizesWithNames
()
def
supportsCustomPageSizes
()
def
availablePrinterNames
()
def
availablePrinters
()
def
defaultPrinter
()
def
defaultPrinterName
()
def
printerInfo
(printerName)
使用静态函数以生成列表为
QPrinterInfo对象。每个QPrinterInfoobject in the list represents a single printer and can be queried for name, supported paper sizes, and whether or not it is the default printer.
QPrinterInfo
¶
QPrinterInfo(printer)
QPrinterInfo(other)
- param other
- param printer
构造空
QPrinterInfo
对象。
另请参阅
PySide2.QtPrintSupport.QPrinterInfo.
availablePrinterNames
(
)
¶
字符串列表
Returns a list of all the available Printer Names on this system.
It is recommended to use this instead of
availablePrinters()
as it will be faster on most systems.
Note that the list may become outdated if changes are made on the local system or remote print server. Only instantiate required
QPrinterInfo
instances when needed, and always check for validity before calling.
PySide2.QtPrintSupport.QPrinterInfo.
availablePrinters
(
)
¶
Returns a list of
QPrinterInfo
objects for all the available printers on this system.
It is NOT recommended to use this as creating each printer instance may take a long time, especially if there are remote networked printers, and retained instances may become outdated if changes are made on the local system or remote print server. Use
availablePrinterNames()
instead and only instantiate printer instances as you need them.
PySide2.QtPrintSupport.QPrinterInfo.
defaultColorMode
(
)
¶
ColorMode
Returns the default color mode of this printer.
PySide2.QtPrintSupport.QPrinterInfo.
defaultDuplexMode
(
)
¶
DuplexMode
Returns the default duplex mode of this printer.
PySide2.QtPrintSupport.QPrinterInfo.
defaultPageSize
(
)
¶
QPageSize
Returns the current default Page Size for this printer.
PySide2.QtPrintSupport.QPrinterInfo.
defaultPrinter
(
)
¶
Returns the default printer on the system.
The return value should be checked using
isNull()
before being used, in case there is no default printer.
On some systems it is possible for there to be available printers but none of them set to be the default printer.
PySide2.QtPrintSupport.QPrinterInfo.
defaultPrinterName
(
)
¶
unicode
Returns the current default printer name.
PySide2.QtPrintSupport.QPrinterInfo.
description
(
)
¶
unicode
Returns the human-readable description of the printer.
另请参阅
PySide2.QtPrintSupport.QPrinterInfo.
isDefault
(
)
¶
bool
Returns whether this printer is currently the default printer.
PySide2.QtPrintSupport.QPrinterInfo.
isNull
(
)
¶
bool
Returns whether this
QPrinterInfo
object holds a printer definition.
An empty
QPrinterInfo
object could result for example from calling
defaultPrinter()
when there are no printers on the system.
PySide2.QtPrintSupport.QPrinterInfo.
isRemote
(
)
¶
bool
Returns whether this printer is a remote network printer.
PySide2.QtPrintSupport.QPrinterInfo.
location
(
)
¶
unicode
Returns the human-readable location of the printer.
PySide2.QtPrintSupport.QPrinterInfo.
makeAndModel
(
)
¶
unicode
Returns the human-readable make and model of the printer.
PySide2.QtPrintSupport.QPrinterInfo.
maximumPhysicalPageSize
(
)
¶
QPageSize
Returns the maximum physical page size supported by this printer.
PySide2.QtPrintSupport.QPrinterInfo.
minimumPhysicalPageSize
(
)
¶
QPageSize
Returns the minimum physical page size supported by this printer.
PySide2.QtPrintSupport.QPrinterInfo.
printerInfo
(
printerName
)
¶
printerName – unicode
Returns the printer
printerName
.
The return value should be checked using
isNull()
before being used, in case the named printer does not exist.
另请参阅
PySide2.QtPrintSupport.QPrinterInfo.
printerName
(
)
¶
unicode
Returns the name of the printer.
This is a unique id to identify the printer and may not be human-readable.
PySide2.QtPrintSupport.QPrinterInfo.
state
(
)
¶
PrinterState
Returns the current state of this printer.
This state may not always be accurate, depending on the platform, printer driver, or printer itself.
PySide2.QtPrintSupport.QPrinterInfo.
supportedColorModes
(
)
¶
Returns the supported color modes of this printer.
PySide2.QtPrintSupport.QPrinterInfo.
supportedDuplexModes
(
)
¶
Returns a list of duplex modes supported by this printer.
PySide2.QtPrintSupport.QPrinterInfo.
supportedPageSizes
(
)
¶
Returns a list of Page Sizes supported by this printer.
PySide2.QtPrintSupport.QPrinterInfo.
supportedPaperSizes
(
)
¶
注意
此函数被弃用。
使用
supportedPageSizes()
代替。
Returns a list of supported paper sizes by the printer.
Not all printer drivers support this query, so the list may be empty.
PySide2.QtPrintSupport.QPrinterInfo.
supportedResolutions
(
)
¶
Returns a list of resolutions supported by this printer.
PySide2.QtPrintSupport.QPrinterInfo.
supportedSizesWithNames
(
)
¶
注意
此函数被弃用。
使用
supportedPageSizes()
代替。
Returns a list of all the paper names supported by the driver with the corresponding size in millimeters.
Not all printer drivers support this query, so the list may be empty.
PySide2.QtPrintSupport.QPrinterInfo.
supportsCustomPageSizes
(
)
¶
bool
Returns whether this printer supports custom page sizes.