Class Ecrion.Ultrascale.PrinterSettings

Top Previous Topic Next Topic  Print this topic

The PrinterSettings object specifies various settings for the printer.

 

Members/Properties

 

Name

Description

PrinterName

Specifies the printer name.

OutputPrintFile

Specifies the name of the PCL output file.

InputTray

Specifies the input tray from which the printer selects the paper source.

OutputTray

Specifies the printer output tray.

CopyCount

Specifies the copy count for a page to be multiplied when printing.

Duplex

Specifies simplex/duplex printing.

 

 

PrinterName

Specifies the printer name and it applies only when direct printing.

 

 

       public String PrinterName = "";

 

 

OutputPrintFile

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.

 

 

       public String OutputPrintFile = "";

 

 

InputTray

Specifies the input tray from which the printer selects the paper source.

 

 

       public String InputTray = "";

 

 

OutputTray

Specifies the printer output tray.

 

 

       public String OutputTray = "";

 

 

CopyCount

Specifies the copy count for a page to be multiplied when printing. "-1" means not specified.

 

 

       public int CopyCount = -1;

 

 

Duplex

Specifies simplex/duplex printing.

 

 

       public bool Duplex = false;