Share via


PosPrinter.CapConcurrentJrnSlp Property

2/27/2008

Gets a Boolean value that indicates whether the journal 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 CapConcurrentJrnSlp As Boolean
public abstract bool CapConcurrentJrnSlp { get; }
public:
virtual property bool CapConcurrentJrnSlp {
    bool get () abstract;
}
/** @property */
public abstract boolean get_CapConcurrentJrnSlp ()
public abstract function get CapConcurrentJrnSlp () : boolean

Remarks

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

The PrintTwoNormal method can be used with the PrinterStation.TwoSlipJournal printer station value. Printer station values are defined in the PrintStation 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 journal. Nonconcurrent printing may be required for reasons such as the following:

  • Physical constraints, such as the slip form being put in front of the journal 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 CapConcurrentJrnSlp 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