> -----Original Message-----
> From: Patrick JUSSEAU [mailto:[EMAIL PROTECTED]
>
> Since just using a fo:leader by itself does not produce what I want, is
> there a way to use a (1 row x 3 columns) table for each line? The
> middle line would use as much space as possible. This would mimic what
> can be done in HTML where you would specify a 100% width for the middle
> column.
> Is this doable?
>

I was thinking of maybe doing the following:

<fo:table table-layout="fixed">
  <fo:table-column column-width="50mm" />
  <fo:table-column column-width="50mm" />
    <fo:table-body>
      <fo:table-row>
        <fo:table-cell>
          <fo:block text-align="justify" text-align-last="justify">
            <fo:inline>line1</fo:inline>
            <fo:leader leader-pattern="dots" leader-pattern-width="3pt"
                leader-alignment="reference-area" />
          </fo:block>
        </fo:table-cell>
        <fo:table-cell>
          <fo:block text-align="start" text-align-last="justify">
            <fo:leader leader-pattern="dots" leader-pattern-width="3pt"
                 leader-alignment="reference-area" />
            <fo:inline>endline1</fo:inline>
          </fo:block>
        </fo:table-cell>
      </fo:table-row>
    </fo:table-body>
</fo:table>

so I just did, and it works :)
(you have to tweak a bit in between the columns; you will notice on 600%
zoom)

Cheerz,

Andreas


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to