Share via


PosPrinter.CapConcurrentJrnRec Property

2/27/2008

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

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

Syntax

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

Remarks

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

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

If false, the application should print to only one of the stations at a time, and minimize transitions between the stations. Nonconcurrent printing can be required for reasons such as the following:

  • 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 CapConcurrentJrnRec 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
PrinterStation