我在google和StackExchange中多次尝试解决这个问题,我希望我的Windows应用程序中的一个文本框值在执行的PDF文件的页脚中,但问题我不知道如何。 这是我的代码的一部分
public partial class Footer : PdfPageEventHelper
{
public override void OnEndPage(PdfWriter wri, Document document)
{
Paragraph footer = new Paragraph("footer test"); <=== Here my problem
footer.Alignment = Element.ALIGN_RIGHT;
PdfPTable footerTbl = new PdfPTable(1);
footerTbl.TotalWidth = 300;
footerTbl.HorizontalAlignment = Element.ALIGN_RIGHT;
PdfPCell cell = new PdfPCell(footer);
cell.Border = 0;
cell.PaddingLeft = 10;
footerTbl.AddCell(cell);
footerTbl.WriteSelectedRows(0, -1, 415, 30, wri.DirectContent);
}
}
如果我执行PDF文件,页脚只有页脚测试,我想知道如何在PDF页脚中打印文本框值。
问候