NumberDown Property

Applies To

CustomLabel object.

Description

Returns or sets the number of custom mailing labels down the length of a page. Read/write Long.

Note If this property is changed to a value that isn't valid for the specified mailing label layout, an error occurs.

See Also

CustomLabel object, Height property, HorizontalPitch property, NumberAcross property, PageSize property, SideMargin property, TopMargin property, VerticalPitch property, Width property.

Example

This example displays the number of labels across and down the page for the first custom label in the CustomLabels collection.

numAcr = Application.MailingLabel.CustomLabels(1).NumberAcross
numDwn = Application.MailingLabel.CustomLabels(1).Numberdown
MsgBox  Prompt:= "Number of labels across " & numAcr & vbCr & _
    "Number of labels down " & numDwn & vbCr , _
    Title:="Label Page Configuration"