Barcode Xpress for .NET Framework v14.0 - Updated
Accusoft.BarcodeXpressSdk Namespace / Reader Class / Orientation Property




In This Topic
    Orientation Property
    In This Topic
    Gets and sets the orientation of the barcodes to analyze during recognition.
    Syntax
    'Declaration
     
    Public Property Orientation As OrientationInfo
    'Usage
     
    Dim instance As Reader
    Dim value As OrientationInfo
     
    instance.Orientation = value
     
    value = instance.Orientation
    public OrientationInfo Orientation {get; set;}
    public: __property OrientationInfo get_Orientation();
    public: __property void set_Orientation( 
       OrientationInfo value
    );
    public:
    property OrientationInfo Orientation {
       OrientationInfo get();
       void set (    OrientationInfo value);
    }

    Property Value

    The OrientationInfo value set
    Remarks

    The barcode recognition engine is capable of detecting barcodes in an image without any prior knowledge of the barcode orientation. However, you can speed up the recognition process by specifying a barcode orientation.

    Default value: OrientationInfo.HorizontalVertical

    See Also