You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-dev@xmlgraphics.apache.org by "eric.deandrea" <er...@inforonics.com> on 2001/08/06 21:51:56 UTC

overflow property not working

I have a table with 4 columns. One of the cells has text in it that is
bigger than the size of the column and the text is over-writing the text in
the following cell. How do I stop this? I have this:

<fo:table>
	<fo:table-column column-width="2.625in"/>
	<fo:table-column column-width="2.625in"/>
	<fo:table-column column-width="2.625in"/>
	<fo:table-column column-width="2.625in"/>
	<fo:table-body>
		<fo:table-row>
			<fo:table-cell>
				<fo:block
					text-align="start"
					font-size="10pt"
					line-height="14pt"
					overflow="hidden"
					wrap-option="wrap">
				   	This is some text in cell 1 that
will over-write the text in cell 2.
				</fo:block>
			</fo:table-cell>
			<fo:table-cell>
				<fo:block
					text-align="start"
					font-size="10pt"
					line-height="14pt"
					overflow="hidden"
					wrap-option="wrap">
				   	This is some text in cell 2.
				</fo:block>
			</fo:table-cell>
			<fo:table-cell>
				<fo:block
					text-align="start"
					font-size="10pt"
					line-height="14pt"
					overflow="hidden"
					wrap-option="wrap">
				   	This is some text in cell 3.
				</fo:block>
			</fo:table-cell>
			<fo:table-cell>
				<fo:block
					text-align="start"
					font-size="10pt"
					line-height="14pt"
					overflow="hidden"
					wrap-option="wrap">
				   	This is some text in cell 4.
				</fo:block>
			</fo:table-cell>
		</fo:table-row>
	</fo:table-body>
</fo:table>

-Eric

============================================
Eric Deandrea
Software Engineer          (978) 698-6351      
Inforonics, Inc.           eric.deandrea@inforonics.com
30 Porter Rd.
Littleton, MA 01460


---------------------------------------------------------------------
To unsubscribe, e-mail: fop-dev-unsubscribe@xml.apache.org
For additional commands, email: fop-dev-help@xml.apache.org


Re: overflow property not working

Posted by Keiron Liddle <ke...@aftexsw.com>.
Currently this is not implemented, that is the value is read but nothing is
done with the overflow that you have set.

On Mon, 06 Aug 2001 21:51:56 eric.deandrea wrote:
> I have a table with 4 columns. One of the cells has text in it that is
> bigger than the size of the column and the text is over-writing the text
> in
> the following cell. How do I stop this? I have this:
> 
> <fo:table>
> 	<fo:table-column column-width="2.625in"/>
> 	<fo:table-column column-width="2.625in"/>
> 	<fo:table-column column-width="2.625in"/>
> 	<fo:table-column column-width="2.625in"/>
> 	<fo:table-body>
> 		<fo:table-row>
> 			<fo:table-cell>
> 				<fo:block
> 					text-align="start"
> 					font-size="10pt"
> 					line-height="14pt"
> 					overflow="hidden"
> 					wrap-option="wrap">


---------------------------------------------------------------------
To unsubscribe, e-mail: fop-dev-unsubscribe@xml.apache.org
For additional commands, email: fop-dev-help@xml.apache.org