获取可用的打印机列表
arcpy提供的另一列表函数是ListPrinterNames(),它可以生成打印机的列表.调用ListPrinterNames()函数通常是多步骤脚本处理过程中的预备动作.
操作方法:
1.在arcmap中打开目标地图
2.打开python窗口
3.导入arcpy.mapping模块
import arcpy.mapping as mapping
4.引用当前活动地图文档
mxd = mapping.MapDocument("")
5.调用ListPrinterNames()函数,输出每个打印机名称
for printerName in mapping.ListPrinterNames():
print(printerName)
运行脚本,输出结果为本地计算机可用的打印机列表
原文地址:https://blog.csdn.net/pianmian1/article/details/145311977
免责声明:本站文章内容转载自网络资源,如侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!