Share via


PosPrinter.SlpBarCodeRotationList Property

2/27/2008

Gets a collection of the directions in which a slip bar code may be rotated.

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

Syntax

'Declaration
Public MustOverride ReadOnly Property SlpBarCodeRotationList As Rotation()
public abstract Rotation[] SlpBarCodeRotationList { get; }
public:
virtual property array<Rotation>^ SlpBarCodeRotationList {
    array<Rotation>^ get () abstract;
}
/** @property */
public abstract Rotation[] get_SlpBarCodeRotationList ()
public abstract function get SlpBarCodeRotationList () : Rotation[]

Remarks

Possible values are defined by the Rotation enumeration.

If the CapSlpBarCode property is set to false. This indicates that bar codes are not supported, SlpBarCodeRotationList will be set to an empty array.

For example, if the list is "Rotation.Normal, Rotation.Rotate180", the printer can print normal bar codes and upside-down bar codes.

The service object should set SlpBarCodeRotationList 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.RotateSpecial Property
PosPrinter.PrintBarCode Method
Rotation