ListPrinterNames

サマリ

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

7/10/2012