を使用して PDF ドキュメントにフッターを作成して<cfdocumentitem type="footer">
いますが、正常に動作しています。フォントを制御できないように見えることを除いて。などを試してみましたが<span>
、<font face>
うまくいきませんでした。現在、以下のクラスのテーブルを試しています。
でフッターのフォントの外観を制御する方法を知っている人はい<cfdocumentitem>
ますか?
<cfdocument format="pdf"
marginBottom = ".5"
marginLeft = ".4"
marginRight = ".4"
marginTop = ".2"
>
<style type="text/css">@import "pdf.css";</style>
<cfdocumentitem type="footer">
<cfoutput>
<table width=100%>
<tr>
<td class=verd10>
<b>#pdfstuff.pdffinal#</b>
</td>
<td align=right class=verd10 valign=top>
Page #cfdocument.currentPageNumber# of #cfdocument.currentPageNumber#
</td>
</tr>
</table>
</cfoutput>
</cfdocumentitem>
pdf document data etc
</cfdocument>