Access) (Form.Printer 屬性
會傳回或設定代表目前系統上的預設印表機的 印表機 物件。 讀取/寫入。
語法
運算式。印表機
expression 代表 Form 物件的變數。
範例
下面範例 Printers 集合中預設的印表機系統會為第一部印表機並再報告其名稱、 驅動程式資訊及連接埠資訊。
Dim prtDefault As Printer
Set Application.Printer = Application.Printers(0)
Set prtDefault = Application.Printer
With prtDefault
MsgBox "Device name: " & .DeviceName & vbCr _
& "Driver name: " & .DriverName & vbCr _
& "Port: " & .Port
End With
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。