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




In This Topic
    ReturnPossibleBarcodes Property
    In This Topic
    Gets or sets a value indicating whether possible barcodes are returned in the result collection.
    Syntax
    'Declaration
     
    Public Property ReturnPossibleBarcodes As Boolean
    'Usage
     
    Dim instance As ImGearBarcodeReader
    Dim value As Boolean
     
    instance.ReturnPossibleBarcodes = value
     
    value = instance.ReturnPossibleBarcodes
    public bool ReturnPossibleBarcodes {get; set;}
    public: __property bool get_ReturnPossibleBarcodes();
    public: __property void set_ReturnPossibleBarcodes( 
       bool value
    );
    public:
    property bool ReturnPossibleBarcodes {
       bool get();
       void set (    bool value);
    }

    Property Value

    A boolean value which represents if possible barcodes are returned or not.
    Remarks

    The default value is false.

    When this property is set to True, the barcode engine returns candidate barcodes which could not be decoded in the results collection.

    For 1D barcodes, any unsolved regions of interest in the barcode result collection have a ImGearBarcodeType of UnknownBarcode and the ImGearBarcodeResult.BarcodeValue property will be NULL.

    For the following 2D barcodes types including DataMatrix, PDF417, Aztec, QRcode, PostNet, Intelligent Mail, Australian Post and Royal Post 4, the currently selected ImGearBarcodeType is returned as the candidate region type.

    See Also