我们如何使用.Net中的aspose.words设置word文档的页边距

时间:2017-01-19 13:07:43

标签: aspose aspose.words

我在.Net中使用Aspose.Words,我需要使用Aspose.Words从每一侧,页面方向和页眉页脚距离设置页边距?

1 个答案:

答案 0 :(得分:3)

您可以通过不同方式设置Word文档的页边距。但下面是最简单的方法:

            Document() doc = new Document();

            DocumentBuilder(doc) builder = new DocumentBuilder(doc)
            {
                PageSetup =
                {
                    Orientation = Word.Orientation.Portrait,
                    PaperSize = Word.PaperSize.Letter,
                    LeftMargin = 72.0,
                    RightMargin = 72.0,
                    TopMargin = 72.0,
                    BottomMargin = 72.0
                },

            };