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
Was this article helpful?
0 out of 0 found this helpful
Comments
3 comments
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);
Please sign in to leave a comment.