7

我正在尝试将图像放置为每个页面的页脚,我可以使用以下方法将页脚移近页面底部:

doc.DefaultPageSetup.FooterDistance = "0cm"

但我似乎无法找到一种方法来缩短与页面两侧的距离。有没有办法做到这一点或某种“技巧”来实现这一点。

我能找到的唯一方法是删除页面设置边距,但我需要它们将页面固定在一起。

有谁知道解决这个问题的方法或我缺少的一些设置?

4

2 回答 2

2

您可以将 TextFrame 添加到页脚 ( AddTextFrame()) 并为该文本框分配绝对位置。

另见:http:
//forum.pdfsharp.net/viewtopic.php?p=6928#p6928

于 2013-10-22T08:48:03.903 回答
0
Document document = new Document();    
Section section = document.AddSection();    
Section.PageSetup.BottomMargin =  "1cm"; // according to data size

Paragraph paragraph = section.Footers.Primary.AddParagraph();     
paragraph.AddText("XYZ ltd");    
paragraph.Format.Alignment = ParagraphAlignment.Center;
于 2017-08-28T21:00:21.720 回答