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.
Comments
3 comments
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.
This works, thanks for your help.
Refer to this:
c# barcode generation
Please sign in to leave a comment.