ListPrinterNames

摘要

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

讨论

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.

语法

ListPrinterNames ()
返回值
数据类型说明
String

A Python list of printer names.

代码示例

ListPrinterNames example:

This script will print the names of the availble printers.

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

7/10/2012