Hi
I want to use string of repeat group to split rows, So I use RowSplitters method
let yArray = SearchElements.RepeatingGroup.AllInstances.CharacterString.GetYArray(0);
RowSplitters( yArray,true,false);
But some words will be cut.
I need to offset the yArray simultaneously, just like "CharacterString.Rect.Top-10dt", So I try to modify
let yArray = SearchElements.RepeatingGroup.AllInstances.CharacterString.GetYArray(0)-10dt;
RowSplitters( yArray,true,false);
There is a error of wrong parameters for operator "-"
How can I modify the value of yArray?
I want to use string of repeat group to split rows, So I use RowSplitters method
let yArray = SearchElements.RepeatingGroup.AllInstances.CharacterString.GetYArray(0);
RowSplitters( yArray,true,false);
But some words will be cut.
I need to offset the yArray simultaneously, just like "CharacterString.Rect.Top-10dt", So I try to modify
let yArray = SearchElements.RepeatingGroup.AllInstances.CharacterString.GetYArray(0)-10dt;
RowSplitters( yArray,true,false);
There is a error of wrong parameters for operator "-"
How can I modify the value of yArray?
Comments
2 comments
YArray is an IntArray predifined type, you can view its description in FlexiLayout HelpFile:FlexiLayout Language-Predifined Types-IntArray. According to description it doesn't support operators such as + or -.
If you are using YArray to find rows, then you need to make sure that elements that form YArray, capture each row correctly.
Best Regards,
I use the small white gap above CharacterString and replace it,
let yArray = SearchElements.RepeatingGroup.AllInstances.whitegap.GetYArray(0)finally
It can solve this problem now, thanks!
Please sign in to leave a comment.