我正在使用作为命名空间document.Active()
一部分的方法Microsoft.office.interop.word
。我想打开文件,即我想查看在 Word 应用程序中打开的文件。我已将thetrackRevisions
属性设置为 true,其余所有内容。
我只希望文件在不另存为模式下打开。只需打开,这样当我从 DB 或我的 PC 驱动器打开文档时,我只想打开它。
这是我正在执行的代码:
Word.Document tempDoc = app.Documents.Open("E:\\xyz.docx");
// Activate the document so it shows up in front
tempDoc.Activate();
tempDoc.TrackRevisions = true;
foreach (Revision rev in tempDoc.Revisions)
{
string editedBy = rev.Author;
//string what = rev.Cells;
}
tempDoc.Close(ref Nothing, ref format, ref Nothing);
您有什么建议吗?