我正在使用实用程序从word文档中删除曲目格式。如果我不使用document.close,它工作正常。以下是我正在使用的方法
private static void RemoveTrackChangesFormattingFromTheDocument(ref WordprocessingDocument document)
{
Program.AcceptAll(document);//this method will remove all the format changes
//it is working fine if i will not use
document.close();
}
请帮帮我。
由于
答案 0 :(得分:1)
可能是您的AcceptAll
方法正在使用using
,例如
using (WordprocessingDocument doc =
WordprocessingDocument.Open("DocumentWithRevisions.docx", true))
{
RevisionAccepter.AcceptRevisions(doc);
}
所以只要达到右括号就会自动调用.Close
?