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




In This Topic
    AppendCheckSum Property
    In This Topic
    Gets and sets a value which determines if a checksum value is appended to the barcode during recognition.
    Syntax
    'Declaration
     
    Public Property AppendCheckSum As Boolean
    'Usage
     
    Dim instance As Reader
    Dim value As Boolean
     
    instance.AppendCheckSum = value
     
    value = instance.AppendCheckSum
    public bool AppendCheckSum {get; set;}
    public: __property bool get_AppendCheckSum();
    public: __property void set_AppendCheckSum( 
       bool value
    );
    public:
    property bool AppendCheckSum {
       bool get();
       void set (    bool value);
    }

    Property Value

    A boolean value which designates the checksum.
    Remarks

    If this property is set to true, checksum values will be appended for barcode types that require a checksum. This property does not have any effect for barcode types which do not have a checksum or for which the checksum is optional.

    Note: The UPC and EAN codes always append the checksum character to the barcode results. This is done regardless of this property's value.

    Default value: false

    See Also