ListPrinterNames

Resumen

Returns a Python list of available printers on the local computer.

Debate

ListPrinterNames always returns a list object even if only one printer name is returned. In order to return a single printer, an index value must be used on the list (e.g., printer = arcpy.mapping.ListPrinterNames()[0]). For loops on a list provide an easy mechanism to iterate through each item in the list (e.g., for printer in arcpy.mapping.ListPrinterNames():).

ListPrinterNames is an easy way to identify the names of the printers currently available to the local computer. These string values can then be used as input parameters with the PrintMap() function or the printPages method on the DataDrivenPages object.

Sintaxis

ListPrinterNames ()
Valor de retorno
Tipo de datosExplicación
String

A Python list of printer names.

Ejemplo de código

ListPrinterNames example:

This script will print the names of the availble printers.

import arcpy
for printerName in arcpy.mapping.ListPrinterNames():
    print printerName

7/11/2012