Share via


PosPrinter.PrintTwoNormal(PrinterStation, String, String) Method

Definition

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

public abstract void PrintTwoNormal (Microsoft.PointOfService.PrinterStation stations, string data1, string data2);
abstract member PrintTwoNormal : Microsoft.PointOfService.PrinterStation * string * string -> unit
Public MustOverride 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 as follows: 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 try to print on both stations concurrently.

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, by using this format may give additional increased print performance.

Applies to