Share via


PosPrinter.CapConcurrentRecSlp Property (POS for .NET v1.12 SDK Documentation)

2/27/2008

Gets a Boolean value that indicates whether the receipt and slip stations can print at the same time.

Namespace: Microsoft.PointOfService
Assembly: Microsoft.PointOfService (in microsoft.pointofservice.dll)

Syntax

'Declaration
Public MustOverride ReadOnly Property CapConcurrentRecSlp As Boolean
public abstract bool CapConcurrentRecSlp { get; }
public:
virtual property bool CapConcurrentRecSlp {
    bool get () abstract;
}
/** @property */
public abstract boolean get_CapConcurrentRecSlp ()
public abstract function get CapConcurrentRecSlp () : boolean

Remarks

If true, the receipt and slip stations can print at the same time.

The PrintTwoNormal method can be used with the PrinterStation.TwoSlipReceipt printer station value. Printer station values are defined in the PrinterStation enumeration.

If false, the application must use the sequence BeginInsertion/EndInsertion followed by print requests to the slip followed by BeginRemoval/EndRemoval before printing on the receipt. Nonconcurrent printing may be required for reasons such as the following:

  • Physical constraints, such as the slip form being put in front of the receipt station.

  • Higher likelihood of error, such as greater chance of paper jams when moving between the stations.

  • Higher performance when each station is printed separately.

The service object should set CapConcurrentRecSlp based on the capabilities of the device.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread-safe. Any instance members are not guaranteed to be thread-safe.

See Also

Reference

PosPrinter Class
PosPrinter Members
Microsoft.PointOfService Namespace
PosPrinter.PrintTwoNormal Method
PosPrinter.BeginInsertion Method
PosPrinter.EndInsertion Method
PosPrinter.BeginRemoval Method
PosPrinter.EndRemoval Method
PrinterStation