请问如何将文档的最后一页删除?
word文档页面是不确定的。
在这种情况下,以下代码应删除最后一页:
Document doc = new Document("E:\\rws\\rws.doc");
Paragraph target = (Paragraph) doc.FirstSection.Body.LastParagraph.PreviousSibling;
target.Remove();
doc.Save("E:\\rws\\19.2.doc");
请问如何将文档的最后一页删除?
word文档页面是不确定的。
在这种情况下,以下代码应删除最后一页:
Document doc = new Document("E:\\rws\\rws.doc");
Paragraph target = (Paragraph) doc.FirstSection.Body.LastParagraph.PreviousSibling;
target.Remove();
doc.Save("E:\\rws\\19.2.doc");