当一个word文档启用修订功能后,我们后续对该文档做的任何操作,包含编辑,删除,修改都会被明确记录并以不同形式标注在文档中。我们可以通过接受或拒绝修订来对该文档做最后的保存修改。该文章将详细描述word 修订功能。
启用修订功能
c#
document document = new document();
document.loadfromfile("test.docx", fileformat.docx2010);
document.trackchanges = true;
document.savetofile("trackchanges.docx", fileformat.docx2010);
vb.net
dim document as document = new document
document.loadfromfile("test.docx", fileformat.docx2010)
document.trackchanges = true
document.savetofile("trackchanges.docx", fileformat.docx2010)
接受或拒绝修改
c#
document document = new document();
document.loadfromfile("trackchanges.docx", fileformat.docx2010);
if (document.haschanges) {
document.acceptchanges;
}
// document.rejectchanges();
document.savetofile("acceptchanages.docx", fileformat.docx2010);
vb.net
dim document as document = new document
document.loadfromfile("trackchanges.docx", fileformat.docx2010)
if document.haschanges then
document.acceptchanges
end if
'document.rejectchanges();
document.savetofile("acceptchanages.docx", fileformat.docx2010)