Syntax
Object.Duplicates =
short
Type = short, read/write
Description
The Duplicates property is a read/write property that sets the amount of duplicate labels to print. The default for this property is one. Duplicate labels are EXACT copies of the original label. When using this property with a label that has an incrementing or decrementing serial number, this many labels print before incrementing (or decrementing) the number. To create multiple labels with unique serial numbers use the Quantity Property.
Example
'print 2 copies of each
serial number 5 times.
'the total number of labels printed =
10
ClientX1.SetLabelName "Label1.lwl"
ClientX1.SetData 0,
"ABC-123"
ClientX1.Quantity = 5
ClientX1. Duplicates =
2
ClientX1.PrintJob
See also