Word) (Application.ActivePrinter 属性
返回或设置活动打印机的名称。 读/写 String。
语法
表达式。ActivePrinter
expression:表示 Application 对象的变量。
备注
设置打印机使用 ActivePrinter 属性将更改默认打印机。 有关详细信息,请参阅 设置 ActivePrinter 更改系统默认打印机 。
示例
本示例显示当前打印机的名称。
MsgBox "The name of the active printer is " & ActivePrinter
本示例将网络 HP LaserJet IIISi 打印机设置为活动打印机。
Application.ActivePrinter = "HP LaserJet IIISi on \\printers\laser"
本示例将 LPT1 端口的本地 HP LaserJet 4 打印机设置为活动打印机。
Application.ActivePrinter = "HP LaserJet 4 local on LPT1:"
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。