ListPrinterNames
Summary
Returns a list of available printer names.
Syntax
ListPrinterNames ()
| Data Type | Explanation |
| String |
Returns a Python list containing the printer names available to the script. |
Code Sample
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
10/28/2011