Thanks but that didn't work. I ended up calculating the extend size based on
the length of the content:
<!-- Calculate page footer size-->
<xsl:variable name="content-size">
<xsl:value-of select="string-length(//notices)"/>
</xsl:variable>
<xsl:variable name="footer-size">
<xsl:value-of select="$content-size div 450"/>
</xsl:variable>
<xsl:variable name="extent-size">
<xsl:choose>
<xsl:when test="$footer-size <
1.5">1.5</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$footer-size"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
.....
<fo:region-after region-name="xsl-region-after" extent="{$extent-size}in"/>
I just thought there was an easier way.
thanks for the help.
Bones
Amick, Eric wrote:
>
> I believe all you need is display-align="after" on the fo:region-after.
>
>
> Eric Amick
> Legislative Computer Systems
> Office of the Clerk
>
> -----Original Message-----
> From: bonekrusher [mailto:[EMAIL PROTECTED]
> Sent: Thursday, June 19, 2008 14:15
> To: [email protected]
> Subject: region-after set size to auto
>
>
> Hi,
>
> I have a <fo:region-after region-name="xsl-region-after"/> that holds
> "footer" information. Sometime there is about 3.5 inches of info and
> sometimes 1.0. If I set the properties to:
>
> <fo:region-after region-name="xsl-region-after" extent="3.5"/>
>
> and there is only 1.5in of data the "footer" is in half way up the page.
> Is there a way to set to "Auto"? and always be at the bottom of the page
> no matter how content there is in the footer?
>
> Thx
>
> --
> View this message in context:
> http://www.nabble.com/region-after-set-size-to-auto-tp18014924p18014924.
> html
> Sent from the FOP - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
--
View this message in context:
http://www.nabble.com/region-after-set-size-to-auto-tp18014924p18015847.html
Sent from the FOP - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]