ListPrinterNames (arcpy)
サマリ
Returns a list of available printer names.
構文
ListPrinterNames ()
データ タイプ | 説明 |
String |
Returns a Python list containing the printer names available to the script. |
コードのサンプル
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/14/2013