다음을 통해 공유


Application.Printers Property (Access)

Returns the Printers collection representing all the available printers on the current system. Read-only Printers collection.

Syntax

.Printers

A variable that represents an Application object.

Example

The following example displays information about all the printers available on the current system.

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 

참고 항목

개념

Application Object

Application Object Members