Hello,
I have two situations:
1. the field is right of the field name
2. the field is below field name
How I can use only one labeled field to handle these two situations?
Hello,
I have two situations:
1. the field is right of the field name
2. the field is below field name
How I can use only one labeled field to handle these two situations?
0人中0人がこの記事が役に立ったと言っています
コメント
1件のコメント
Hello,
I am terribly sorry for the late answer.
The short answer is - you cant, you have to use 2 different elements to recognize it.
But you can choose what element to take as the source of the data in the expression field of the block:
if SearchElements.Barcode1.IsFound then {
OutputRegion = SearchElements.Barcode1.Region;
}
if SearchElements.Barcode2.IsFound then {
OutputRegion = SearchElements.Barcode2.Region;
}
サインインしてコメントを残してください。