ImageGear .NET v25.2 - Updated
ImageGear.Barcode Assembly / ImageGear.Barcode Namespace / ImGearBarcodeResult Class / IsCheckSumValid Property




In This Topic
    IsCheckSumValid Property
    In This Topic
    Gets a value indicating whether there is a valid check sum for a recognized barcode.
    Syntax
    'Declaration
     
    Public ReadOnly Property IsCheckSumValid As Boolean
    'Usage
     
    Dim instance As ImGearBarcodeResult
    Dim value As Boolean
     
    value = instance.IsCheckSumValid
    public bool IsCheckSumValid {get;}
    public: __property bool get_IsCheckSumValid();
    public:
    property bool IsCheckSumValid {
       bool get();
    }

    Property Value

    A boolean value which designates if a valid check sum is returned for a recognized barcode.
    Remarks

    For barcodes with a check sum, it returns whether the check sum is valid. A value of 1 represents True, a value of 0 represents False.

    For barcodes without a check sum, it returns False.

    For barcodes with error correction, it returns True.

    See the ImGearBarcodeResult Class for more information about retrieving results.

    See Also