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 out of 0 found this helpful
Comments
1 comment
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;
}
Please sign in to leave a comment.