ListPrinterNames

Zusammenfassung

Returns a list of available printers on the local computer.

Syntax

ListPrinterNames ()
Rückgabewert
DatentypErläuterung
String

Returns a list containing the printer names available to the script.

Codebeispiel

ListPrinterNames example

Returns a list of printer names available to session.

import arcpy

# Print available printers
printers = arcpy.ListPrinterNames()
for printer in printers:
    print(printer)