コミュニティ

Change barcode value manually 回答済み

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.

この記事は役に立ちましたか?

0人中0人がこの記事が役に立ったと言っています

コメント

3件のコメント

  • 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

サインインしてコメントを残してください。