PosPrinterBase.PrintTwoNormal(PrinterStation, String, String) Method

Definition

Prints two strings on two print stations simultaneously. When supported, this may give increased print performance.

public override void PrintTwoNormal (Microsoft.PointOfService.PrinterStation stations, string data1, string data2);
override this.PrintTwoNormal : Microsoft.PointOfService.PrinterStation * string * string -> unit
Public Overrides Sub PrintTwoNormal (stations As PrinterStation, data1 As String, data2 As String)

Parameters

stations
PrinterStation

The printer stations to be used. Possible values are defined by the PrinterStation enumeration. Valid values are: PrinterStation.TwoReceiptJournal, PrinterStation.TwoSlipJournal, or PrinterStation.TwoSlipReceipt.

data1
String

The characters to be printed on the first station. May consist of printable characters and escape sequences as listed in the PosPrinter topic. The characters must all fit on one printed line, so that the printer may attempt to print on both stations simultaneously.

data2
String

The characters to be printed on the second station. (Restrictions are the same as data1.) If this string is the empty string (“”), then print the same data as data1. On some printers, using this format may give additional increased print performance.

Applies to