Printer.DriverName 屬性 (Access)
會傳回指出使用指定的印表機驅動程式的名稱的 字串 。 唯讀。
語法
運算式。DriverName
表達 代表 Printer 物件的 變數。
範例
下列範例顯示系統上所有可用印表機的相關資訊。
Dim prtLoop As Printer
For Each prtLoop In Application.Printers
With prtLoop
MsgBox "Device name: " & .DeviceName & vbCr _
& "Driver name: " & .DriverName & vbCr _
& "Port: " & .Port
End With
Next prtLoop
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。