public bool Print(int iAcross, int iDown, int nRecords, int nCopies, int seqOffset)
or
public bool Print(int iAcross, int iDown, int nRecords, int nCopies, int seqOffset, int nStart)
or
public bool Print(PrintDocument pd, int iAcross, int iDown, int nRecords, int nCopies, int seqOffset, int nStart)
Starts label printing on the current printer using the following parameters:
iAcross – the column number at which label printing starts – based on the top left label being 0,0
iDown – the row number at which label printing starts – based on the top left label being 0,0
nRecords – the number of records to be printed
nCopies – the number of copies of each record to be printed
[the total number of labels printed will be nRecords * nCopies)
seqOffset – a values added to all sequence number formulae present on the label – quite useful if the printer jams part way through a long print run!
If the nStart parameter is included this specifies the initial value of the record number passed to the Label() event. If nStart is not included the initial record number is 0.
If the PrintDocument parameter is included then the PrintDocument properties will be used for the printer on which the labels will be printed – otherwise the default printer and printer settings are used.
More: