Job.PrinterCopiesType Property |
Sets and returns whether the printer copies value set in a printer code template (the value of the PrinterCopies property) will be a placeholder for an integer or a constant.
Job.PrinterCopiesType = BtPrinterCopiesValueType
Where BtPrinterCopiesValueType can be one of the following constants:
btPrinterCopiesConstant: The value of the PrinterCopies property will be treated as a literal; has a value of 0.
btPrinterCopiesFromTemplateField: The value of the PrinterCopies property will be treated as a placeholder that the print system will replace with a value from a printer code template field; has a value of 1.
btPrinterCopiesFromPrintDialogCopies: The value of the PrinterCopies property will be treated as a placeholder that the print system will replace with the value from the Print dialog; has a value of 2.
btPrinterCopiesNotSupported: The printer driver is unable to make this template tag, and the PrinterCopies property has no effect; has a value of 3.
Version |
BarTender 7.50 or higher |
Edition |
Automation, Enterprise |
'Declare a BarTender application variable
Dim btApp As BarTender.Application
'Declare a BarTender document variable
Dim btFormat As BarTender.Format
'Declare a BarTender printer code template variable
Dim btPCT As BarTender.PrinterCodeTemplate
'Declare a BarTender job variable
Dim btJob As BarTender.Job
'Declare a BarTender messages variable to hold all messages
Dim btMessages As BarTender.Messages = Nothing
'Create a new instance of BarTender
btApp = New BarTender.Application
'Set the BarTender application visible
btApp.Visible = True
'Open a BarTender document
btFormat = btApp.Formats.Open("c:\Format1.btw", False, "")
'Set the printer code template variable
btPCT = btFormat.PrinterCodeTemplate
'Set the job variable
btJob = btPCT.Job
'Set the printer copies type property
btJob.PrinterCopiesType = BarTender.BtPrinterCopiesValueType.btPrinterCopiesConstant
'Set the printer copies property
btJob.PrinterCopies = "2"
'Export the printer code template
btPCT.Export("SAPscript-ITF", BarTender.BtPctExportType.btPctExportSeparate, "c:\Printer Code Templates\FormatTemplate.prn", "c:\Printer Code Templates\DataTemplate.prn", btMessages)
'End the BarTender process
btApp.Quit(BarTender.BtSaveOptions.btDoNotSaveChanges)
// Declare a BarTender application variable
BarTender.Application btApp;
// Declare a BarTender document variable
BarTender.Format btFormat;
// Declare a BarTender printer code template variable
BarTender.PrinterCodeTemplate btPCT;
// Declare a BarTender job variable
BarTender.Job btJob;
// Declare a BarTender messages variable to hold all messages
BarTender.Messages btMessages;
// Declare an object variable
System.Object obj = null;
// Create a new instance of BarTender
btApp = new BarTender.Application();
// Set the BarTender application visible
btApp.Visible = true;
// Open a BarTender document
btFormat = btApp.Formats.Open("c:\\Format1.btw", false, "");
// Set the printer code template variable
btPCT = btFormat.PrinterCodeTemplate;
// Set the job variable
btJob = btPCT.Job;
// Set the printer copies type property
btJob.PrinterCopiesType = BarTender.BtPrinterCopiesValueType.btPrinterCopiesConstant;
// Set the printer copies property
btJob.PrinterCopies = "2";
// Export the printer code template
btPCT.Export("SAPscript-ITF", BarTender.BtPctExportType.btPctExportSeparate, "c:\\Printer Code Templates\\FormatTemplate.prn", "c:\\Printer Code Templates\\DataTemplate.prn", ref obj);
// Set the messages variable to the object
btMessages = obj as BarTender.Messages;
// End the BarTender process
btApp.Quit(BarTender.BtSaveOptions.btDoNotSaveChanges);