[EMAIL PROTECTED] wrote:

> Now i need to be able to say (but then in FOP language)
> print a line here: 14.2(x from), 220(y from), 51(x to), 220(y to) the line
> must be 1 pt thick or 2 points whatever...

If you want to draw horizontal or vertical lines,
you can add flat block-containers inside appropriate
static-content element : 

  <fo:static-content flow-name="first-before">       
    ...
    <fo:block-container left="(x from)"
                        top="(y from)" 
                        width="(y width)"
                        height="0"
                        position="absolute"
                        border-after-width="2pt"
                        border-after-style="solid"/> 
    ...
  </fo:static-content>
 

Ed

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

Reply via email to