XSL:FO 边框样式虚线



我正在尝试在表格中添加虚线。 我 下面是 XSLT 。当我使用border-style = "dotted"时,线条显示为实线而不是虚线。

<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet version="1.0" xmlns:m="http://www.ibm.com/maximo">
  <xsl:template match="/">
    <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
      <fo:layout-master-set>
        <fo:simple-page-master master-name="hello" page-height="11in" page-width="8.5in" />
        </fo:simple-page-master>
      </fo:layout-master-set>
      <fo:page-sequence master-reference="hello">
        <fo:flow flow-name="xsl-region-body">
          <fo:block>
            <fo:tab le width="100mm">
              <fo:table-column/>
              <fo:table-body>
                <fo:table-row>
                  <fo:table-cell>
                    <fo:block border-before-style="dashed" border-before-width="1mm" border-before-width.length="1pt">sdsdasd</fo:block>
                  </fo:table-cell>
                </fo:table-row>
              </fo:table-body>
              </fo:table>
          </fo:block>
        </fo:flow>
      </fo:page-sequence>
    </fo:root>
  </xsl:template>
</xsl:stylesheet>

XSL-FO 中是否不支持虚线样式。 我正在使用 FONET.dll for .Net

FO.NET 最初是作为Apache FOP 0.20.4移植到.NET环境的。

该版本的 FOP 不支持整个 FO 标准,不同的边框样式属于不支持的功能。

相关内容

  • 没有找到相关文章

最新更新