我正在尝试将图像放置为每个页面的页脚,我可以使用以下方法将页脚移近页面底部:
doc.DefaultPageSetup.FooterDistance = "0cm"
但我似乎无法找到一种方法来缩短与页面两侧的距离。有没有办法做到这一点或某种“技巧”来实现这一点。
我能找到的唯一方法是删除页面设置边距,但我需要它们将页面固定在一起。
有谁知道解决这个问题的方法或我缺少的一些设置?
您可以将 TextFrame 添加到页脚 ( AddTextFrame()
) 并为该文本框分配绝对位置。
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;