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




In This Topic
    AppendCheckSum Property
    In This Topic
    Gets or sets a value indicating whether a check sum value is appended to the barcode during recognition.
    Syntax
    'Declaration
     
    Public Property AppendCheckSum As Boolean
    'Usage
     
    Dim instance As ImGearBarcodeReader
    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 check sum.
    Remarks

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

    Default value: false

    See Also