Community

Change barcode value manually Answered

We're building an application where the user should be able to validate recognized barcodes and change them manually if the recognized value was not correct. We are using Abbyy Finereader SDK 10.

I tried to write the new value in the barcode text, but unfortunately the property is read only. Is there another way to change the barcode text?

I tried it this way:

BarcodeBlock currentBarcodeBlock = GetBarcodeBlockByPageID(id);
string newBarcodeValue = "Test12345";
currentBarcodeBlock.Text = newBarcodeValue;

Thanks for your help.

Was this article helpful?

0 out of 0 found this helpful

Comments

3 comments

  • Avatar
    Permanently deleted user

    As you can see in Help > Index > BarcodeBlock Object > Text property description, to change the value of this property it is necessary to edit the recognized text in the BarcodeText property.

    1
  • Avatar
    Permanently deleted user

    This works, thanks for your help.

    0
  • Avatar
    Permanently deleted user

    Refer to this: alt text

    c# barcode generation

    0

Please sign in to leave a comment.