Dispaly Number of Copies on Label
Hi,
I am using API request to create labels. I am sending number of copies user selects :
PrintBTWAction printBTWAction = new PrintBTWAction
{
Copies = model.Copies.ToString(),
DatabaseOverrides = new List<DatabaseOverride>
{
new DatabaseOverride
{
Name = "picktransdb",
Type = "VariableName",
DataSourceVariableName = "datum"
}
},
DocumentFile = labelConfig.LabelLocation,
Printer = labelConfig.Printer,
};
I would like to display on each copy of lable something like this, say if user select 3 copies then :
Copy 1 of 3
Copy 2 of 3
Copy 3 of 3
Any idea how can I acheive this.
Thanks
-
Peter Thane
★ BarTender Hero ★
You should be able to achieve this by adding a text object onto the label made up of 4 substrings.
The first and third with the words (and spaces) "Copy " and " of " whilst the second field is set to increment very label and reset each job.
The fourth field (X in the image below) needs to be linked to the data coming from your command that includes the total number of copies to print
0
Iniciar sesión para dejar un comentario.
Comentarios
1 comentario