Returns True if this is the system default printer
Syntax:
PropertyGetDefault()AsBoolean
Remarks:
The Default property returns a read-only Boolean (True or False) value that indicates whether a specified printer is the default printer.
Examples:
The following VBA example displays a message box with the model name of the default printer.
Sub Test()
Dim intCounter As Integer, Prn As Printer
For intCounter = 1 To Printers.Count
Set Prn = Printers.Item(intCounter)
If Prn.Default = True Then
MsgBox "The default printer is: " & Prn.Type
End If
Next intCounter
End Sub