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




In This Topic
    ValidCheckSum Property
    In This Topic
    Gets a valid checksum for a recognized barcode.
    Syntax
    'Declaration
     
    Public ReadOnly Property ValidCheckSum As Boolean
    'Usage
     
    Dim instance As Result
    Dim value As Boolean
     
    value = instance.ValidCheckSum
    public bool ValidCheckSum {get;}
    public: __property bool get_ValidCheckSum();
    public:
    property bool ValidCheckSum {
       bool get();
    }

    Property Value

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

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

    For barcodes without a checksum, it returns False.

    For barcodes with error correction, it returns True.

    See the Result Class for more information about retrieving results.

    See Also