1

我正在使用 Winnovative HTML 到 PDF 转换器并且总是得到页脚行,即使我已将 PdfFooterOptions.DrawFooterLine 设置为 false。我正在调用 HtmlToPdfArea 方法来创建页脚中的内容。

有没有人见过这种行为?

4

2 回答 2

0

您可能使用旧版本,因为当前版本支持高度可定制的页眉和页脚。请使用完整的 C# 代码检查此 HTML 到 PDF 演示,了解如何在页眉或页脚中添加或不添加一行。

于 2013-07-13T13:44:34.230 回答
0

我在下面使用它,它对我来说工作正常希望这有帮助

pdfConverter.PdfFooterOptions.AddTextArea(new TextArea(250, 10, 50, "Page &p; of &P;", new Font(new FontFamily("Arial"), 8)));
        pdfConverter.PdfFooterOptions.DrawFooterLine = false;
于 2013-08-07T10:32:17.907 回答