コミュニティ

Capture Multiple Line span on multiple page

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.

この記事は役に立ちましたか?

0人中0人がこの記事が役に立ったと言っています

コメント

3件のコメント

  • Avatar
    Permanently deleted user
    Hello,

    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
    0
  • Avatar
    Permanently deleted user
    you can combine multiple elements into another element. For example you create paragraph1 for page 1 and paragraph2 for page 2. Then create a region element in the advance pre-search settings of this element write something like this
    RectArray ra;
    ra = RectArray(paragraph1.rect);
    ra.add(paragraph2.rect);
    RestrictSearchArea(ra);
    0
  • Avatar
    Permanently deleted user
    Thank you I will try that
    0

サインインしてコメントを残してください。