How can I extend the paragraph capture from let say middle of the first page and extend it to the second page(if it's the case or else at lest to the bottom of the page) and dump all that into one element.
Capture Multiple Line span on multiple page
この記事は役に立ちましたか?
0人中0人がこの記事が役に立ったと言っています
コメント
3件のコメント
In order to capture a multipage paragraph you will need to use a RepeatingGroup element and place paragraph element inside. In paragraph element relations, specify it to be searched below its last found instance(RepeatingParagraph.png). Add any other search constraints if needed. Make sure your flexilayout is allowed to proccess multipage documents(RepeatingParagraph2.png). The result will be the following (RepeatingParagraph3.png). Detailed information about processing multipage documents can be found in the follwing help file topics: Multipage FlexiLayout, Elements->Element properties-Repeating group.
Best Regards,
Tim
RectArray ra;
ra = RectArray(paragraph1.rect);
ra.add(paragraph2.rect);
RestrictSearchArea(ra);
サインインしてコメントを残してください。