即使我已将PdfFooterOptions.DrawFooterLine设置为false,我仍在使用Winnovative HTML to PDF转换器并始终获取页脚行。我正在调用HtmlToPdfArea方法在页脚中创建内容。
有没有人见过这种行为?
答案 0 :(得分:0)
您可能使用旧版本,因为当前版本支持高度可自定义的页眉和页脚。请check this HTML to PDF demo with complete C# code查看如何在页眉或页脚中添加或不添加行。
答案 1 :(得分:0)
我在下面使用,它的工作正常,希望这个帮助
pdfConverter.PdfFooterOptions.AddTextArea(new TextArea(250, 10, 50, "Page &p; of &P;", new Font(new FontFamily("Arial"), 8)));
pdfConverter.PdfFooterOptions.DrawFooterLine = false;