DotMatrix Property

Applies To

CustomLabel object.

Description

True if the printer type for the specified custom label is dot matrix. False if the printer type is either laser or ink jet. Read-only Boolean.

See Also

CustomLabel object.

Example

This example displays the name and printer type of the first custom mailing label.

Set myLabel = Application.MailingLabel
If myLabel.CustomLabels.Count >= 1 Then
    If myLabel.CustomLabels(1).DotMatrix = True Then
        MsgBox myLabel.CustomLabels(1).Name & " is dot matrix"
    Else
        MsgBox myLabel.CustomLabels(1).Name & " is laser or ink jet"
    End If
End If