ListPrinterNames (arcpy)
Resumen
Returns a list of available printer names.
Sintaxis
ListPrinterNames ()
Tipo de datos | Explicación |
String |
Returns a Python list containing the printer names available to the script. |
Ejemplo de código
ListPrinterNames example
Returns a Python list of printer names available to session.
import arcpy
# Get a list of printer names
#
printerList = arcpy.ListPrinterNames()
# Output printer names to Python window
#
for printer in printerList:
print printer
9/11/2013