7

xls-fo fop 0.94 で keep-together を wrap-option="wrap" と一緒に使用すると、ラップ オプションが無視されますか? 両方を機能させる方法はありますか?

   <fo:table-row border="1pt solid black" keep-together="always">
        <fo:table-cell>
            <fo:block overflow="scroll" wrap-option="wrap">
          This is a long text It is desired that this text be wrapped in the table cell but just can not make it happen!
            </fo:block>
        </fo:table-cell>
   </fo:table-row>
4

1 に答える 1

8

keep-together="always" は、基本的に改行を禁止する keep-together.within-line="always" を暗黙的に設定します。代わりに keep-together.within-column="always" を使用してください!

参照: http://xmlgraphics.apache.org/fop/faq.html#keep-together

BWT、overflow="scroll" は FOP ではサポートされていません。これは、ブラウザ モードの XSL-FO にのみ関連します。紙の上ではスクロールできません。

于 2010-02-09T16:11:53.490 に答える