ImageGear .NET v25.2 - Updated
ImageGear.Barcode Assembly / ImageGear.Barcode Namespace / ImGearBarcodeReader Class / Orientation Property




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

    Property Value

    The ImGearBarcodeOrientationInfo 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: ImGearBarcodeOrientationInfo.HorizontalVertical

    See Also