The PrinterSettings object specifies various settings for the printer.
Members/Properties
Name |
Description |
Specifies the printer name. |
|
Specifies the name of the PCL output file. |
|
Specifies the input tray from which the printer selects the paper source. |
|
Specifies the printer output tray. |
|
Specifies the copy count for a page to be multiplied when printing. |
|
Specifies simplex/duplex printing. |
Specifies the printer name and it applies only when direct printing.
String printerName;
Specifies the name of a PCL output file. If this parameter is empty, the output will be sent direct to the printer. Default value is empty. Applies only when direct printing.
String outputPrintFile;
Specifies the input tray from which the printer selects the paper source.
String inputTray;
Specifies the printer output tray.
String outputTray;
Specifies the copy count for a page to be multiplied when printing. "-1" means not specified.
int copyCount;
Specifies simplex/duplex printing.
bool duplex;